-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·57 lines (57 loc) · 1.88 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
<!doctype html>
<html>
<head>
<title>Conversation Consternation</title>
<link rel="stylesheet" href="index.css" />
<link rel="stylesheet" href="lib/joint.min.css" />
<script src="lib/jquery.min.js"></script>
<script src="lib/lodash.min.js"></script>
<script src="lib/backbone-min.js"></script>
<script src="lib/joint.min.js"></script>
<script src="lib/joint.shapes.devs.min.js"></script>
<script src="lib/autosize.min.js"></script>
</head>
<body>
<input type="file" id="file_open" accept=".dl" style="display: none;" />
<input type="file" id="file_save" accept=".dl" style="display: none;" nwsaveas="dialogue.dl" />
<div id="flash"></div>
<div id="container">
<div id="paper">
<button type="button" id="play-button" onclick="InitPreviewWindow()"></button>
<div class="box-parent">
<div id="search-box">
<div class="section">
<div class="header"><center>search</center></div>
<div style="display: inline-flex;">
<input id="search-bar" type="text" placeholder="string, #tag, $actor, @variable">
<button class="hot-menu-button" type="reset" onclick="clearQuery()">X</button>
</div>
</div>
<div class="section">
<div class="header">
<center>
variables
<button id="add-button" type="button" onclick="AddGlobalVar()">+</button>
</center>
</div>
<div id="globals-box"></div>
</div>
<div class="section">
<div class="header">
<center>
actors
<button id="add-button" type="button" onclick="AddActor()">+</button>
</center>
</div>
<div id="actors-box"></div>
</div>
</div>
<div class="nodelist-box">
<button id="show-global-nodes" type="button" onClick="ToggleGlobalNodeList()">Show Nodes</button>
</div>
</div>
</div>
</div>
<script src="editor.js"></script>
</body>
</html>