-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 1.29 KB
/
index.html
File metadata and controls
27 lines (27 loc) · 1.29 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
<!DOCTYPE HTML>
<html>
<head>
<script src="src/vendor/d3.v3.min.js" charset="utf-8"></script>
<script src="src/vendor/FileSaver.min.js"></script>
<script src="src/vendor/jquery.min.js"></script>
<script src="src/vendor/klay.js"></script>
<link rel="stylesheet" href="css/dagstudio.css" />
</head>
<body>
<div id="container" style="margin:20px">
<div id="layerlist"></div>
<div id="chart"></div>
<div id="right-container">
<div id="toolbox">
<input type="file" id="hidden-file-upload">
<input id="cleanup-input" type="image" title="cleanup graph" src="icons/magic-wand.png" alt="clean">
<input id="upload-input" type="image" title="upload graph" src="icons/upload-icon.png" alt="upload graph">
<input type="image" id="download-input" title="download graph" src="icons/download-icon.png" alt="download graph">
<input type="image" id="delete-graph" title="delete graph" src="icons/trash-icon.png" alt="delete graph">
</div><!-- inline block-space fix
--><div id="floater"><div id="metadata"></div><input type="image" id="toggle-metadata" title="toggle box" src="icons/expand-icon.png" alt="toggle metadata"></div>
</div>
</div>
<script src="src/dagstudio.js"></script>
</body>
</html>