-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (45 loc) · 1.55 KB
/
Copy pathindex.html
File metadata and controls
53 lines (45 loc) · 1.55 KB
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
<!doctype html>
<html lang="en">
<head>
<title>DND Test</title>
<link rel="stylesheet" href="css/app.css" />
<script src="js/app.js"></script>
</head>
<body>
<div id="dlg-menu">
<select id="fileMenu" onchange="app.menu.file()">
<option>File</option>
<option>New</option>
<option>Save</option>
<option>Load</option>
</select>
<select id="viewMenu" onchange="app.menu.view()">
<option>View</option>
<option>Grid</option>
<option>Preview</option>
</select>
<select id="toolsMenu" onchange="app.menu.tools()">
<option>Tools</option>
<option>Debug</option>
<option>Verbose</option>
<option>Stub</option>
</select>
<select id="helpMenu" onchange="app.menu.help()">
<option>Help</option>
<option>About</option>
</select>
</div>
<div id="dlg-canvas" class="container"></div>
<div id="dlg-panel" draggable="true">
<div class="titlebar">Attributes</div>
<select id="ui-widgetId"></select>
<select id="ui-panel"></select>
<div id="ui-output"></div>
</div>
<div id="dlg-palette" draggable="true">
<div class="titlebar">Tools</div>
<div class="palette"></div>
</div>
<div id="dlg-status"></div>
</body>
</html>