-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 716 Bytes
/
index.html
File metadata and controls
22 lines (22 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html>
<head>
<title>Dialogger</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>
</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"></div>
</div>
<script src="dialogger.js"></script>
</body>
</html>