-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patheditor.html
More file actions
34 lines (29 loc) · 1.96 KB
/
editor.html
File metadata and controls
34 lines (29 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Editor</title>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js" integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1" crossorigin="anonymous"></script>
<script src="https://www.gstatic.com/firebasejs/4.6.2/firebase.js"></script>
<!-- <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/vis/4.21.0/vis.min.css"> -->
<link rel="stylesheet" type="text/css" href="css/vis.css">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/vis/4.21.0/vis.min.js"></script>
<!-- <script type="text/javascript" src="js/vis.js"></script> -->
<link rel="stylesheet" type="text/css" href="css/net_editor.css">
</head>
<body>
<div id="network-wrapper"></div>
<p id="instr"></p>
<button id="reset" class="btn btn-secondary">Reset</button>
<button id="submit" class="btn btn-primary disabled">Submit</button>
<div id="process-modal" class="modal">
Processing...
</div>
<!-- Script -->
<script type="text/javascript" src="js/subject_imgs.js"></script>
<script type="text/javascript" src="js/editor.js"></script>
</body>
</html>