-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (31 loc) · 1.29 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>vismm</title>
<link rel="stylesheet" type="text/css" href="style/core.css" />
<!-- Choice of the styling directory -->
<link rel="stylesheet" type="text/css" href="style/animated-default/style.css" />
<script type="text/javascript" src="style/animated-default/style.js"></script>
<script type="text/javascript" src="lib/vis-network.js"></script>
<script type="text/javascript" src="lib/dot.js"></script>
</head>
<body>
<!-- For file open. -->
<input id="file" type="file" accept=".gv, .dot, text/vnd.graphviz" style="display:none"></input>
<!-- For file save. -->
<a id="a" style="display:none"></a>
<!-- For diagram. -->
<div id="vis-network-container"></div>
<!-- For editing. -->
<div id="editor">
<div id="editor-node-label" contenteditable="true"></div>
</div>
<script type="text/javascript" src="script/core.js"></script>
<script type="text/javascript" src="script/editor.js"></script>
<script type="text/javascript" src="script/editor-node-label.js"></script>
<script type="text/javascript" src="script/editor-history.js"></script>
<script type="text/javascript" src="script/input-output.js"></script>
<!--script type="text/javascript" src="script/sample.js"></script-->
</body>
</html>