-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
78 lines (74 loc) · 2.06 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!--
js-Plistor by Tustin2121
plistor.html
-->
<html>
<head>
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
<script src="https://code.jquery.com/ui/1.13.2/jquery-ui.min.js"></script>
<script src="nestedSortable.js"></script>
<script src="ui-contextmenu.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.13.2/themes/smoothness/jquery-ui.min.css" />
<link rel="stylesheet" href="plistor.css" />
<script src="plistor.js"></script>
</head>
<body class="theme-alter">
<div id="topmenu">
<div>
<button type="button" id="open">Open...</button>
<button type="button" id="import">Import...</button>
<!-- Center, list right side in backwards order -->
<button type="button" id="export">Export...</button>
<button type="button" id="save">Save...</button>
<button type="button" id="validate">Validate</button>
<center class="title">
<span class="short" style="display:none;">
<tz>js-</tz>
<ta>P</ta>
<tb>List</tb>
<tc>or</tc>
</span>
<span class="long">
<tz>Javascript</tz>
<ta>Property</ta>
<tb>List</tb>
<tc>Editor</tc>
<te>by Tustin2121</te>
</span>
</center>
</div>
</div>
<div id="main">
<ul id="toplist">
<noscript>
Javascript is required for this page to function.
Please add an exception to your Javascript blocking plugin.
</noscript>
</ul>
</div>
<div id="dlog-imexport" title="Import Plist">
<textarea id="ta-imexport">
</textarea>
</div>
<div id="dlog-str-edit" title="Edit String">
<textarea id="ta-str-edit">
</textarea>
</div>
<div id="dlog-data-edit" title="Edit Data">
<div id="tabs-data" style="height: 100%;">
<ul>
<li><a href="#dt-file">Open File</a></li>
<li><a href="#dt-str">Convert String</a></li>
<li><a href="#dt-raw">Raw Edit</a></li>
</ul>
<div id="dt-raw">
<textarea id="ta-data-edit"></textarea>
</div>
<div id="dt-file"></div>
<div id="dt-str">
<textarea id="ta-data-str" style="height: 90%"></textarea>
</div>
</div>
</div>
</body>
</html>