-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (34 loc) · 1.23 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
<html>
<body>
<!--deploy-->
<script src="http://y-js.org/example-vis.js/bower_components/requirejs/require.js"></script>
<!--local-->
<!--
<script src="bower_components/requirejs/require.js"></script>-->
<link href="style.css" rel="stylesheet" type="text/css" />
<link href="http://y-js.org/example-vis.js/bower_components/vis/dist/vis.min.css" rel="stylesheet" type="text/css" />
<script src="http://y-js.org/example-vis.js/config.js"></script>
<script src="http://y-js.org/example-vis.js/app.js"></script>
<!--local-->
<!--
<link href="bower_components/vis/dist/vis.min.css" rel="stylesheet" type="text/css" />
<script src="config.js"></script>
<script src="app.js"></script>-->
<div id="network-popUp">
<span id="operation">node</span>
<br>
<table style="margin:auto;">
<tr>
<td>label</td>
<td>
<input id="node-label" value="new value" />
</td>
</tr>
</table>
<input type="button" value="save" id="saveButton" />
<input type="button" value="cancel" id="cancelButton" />
</div>
<br />
<div id="mynetwork"></div>
</body>
</html>