-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (38 loc) · 1.25 KB
/
index.html
File metadata and controls
46 lines (38 loc) · 1.25 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<title>Graph Creator</title>
</head>
<style type = "text/css">
body {
margin: 0px;
}
#container {
width: 1080px;
max-width: 1080px;
height: 720px;
background-size: 1080px 720px;
}
</style>
<body>
<div id = "container"></div>
<div align = "left" id = "controlButtons">
<button id = "addNode">Add Nodes </button>
<button id = "removeNode">Remove Nodes </button>
<button id = "addEdges">Add Edges </button>
<button id = "removeEdges">Remove Edges </button>
<input type = "checkbox" id = "digraphStatus"></input>
<label for = "digraphStatus">Display digraph arrows </label>
<br>
<p id = "status">Now adding nodes</p> <br>
</div>
</body>
<script src = "src/jquery-3.2.1.min.js"></script>
<script src = "src/cytoscape/cytoscape.js"></script>
<script src = "src/cytoInit.js"></script>
<script src = "src/creator.js"></script>
<script src = "src/fileWrite.js"></script>
<script src = "src/menu.js"></script>
<script src = "src/ui.js"></script>
<script src = "src/postLoad.js"></script>
</html>