-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
70 lines (58 loc) · 1.63 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!doctype html>
<html>
<head>
<!-- META -->
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<meta charset="utf-8">
<meta itemprop="description" content="Tool for system dynamics ">
<!-- Styles! -->
<link href="css/loopy.css" rel="stylesheet"/>
<link href="css/balloon.css" rel="stylesheet"/>
</head>
<body style="opacity:0">
<title>Causal Loop Diagram</title>
<!-- Loopy & Ink -->
<div id="canvasses"></div>
<!-- The Tools' UI -->
<div id="toolbar"></div>
<div id="playbar"></div>
<div id="sidebar"></div>
<!-- MODAL -->
<div id="modal_container">
<div id="modal_bg"></div>
<div id="modal">
<div id="modal_close">[×] CLOSE</div>
<div id="modal_page"></div>
</div>
</div>
</body>
</html>
<!-- Scripts! -->
<!-- Libraries -->
<script src="js/helpers.js"></script>
<script src="js/minpubsub.js"></script>
<script src="js/Mouse.js"></script>
<script src="js/Key.js"></script>
<!-- Core Simulation Code -->
<script src="js/Loopy.js?v=5"></script>
<script src="js/Model.js?v=3"></script>
<script src="js/Node.js?v=3"></script>
<script src="js/Edge.js?v=2"></script>
<script src="js/Label.js"></script>
<!-- Tools -->
<script src="js/PageUI.js"></script>
<script src="js/Sidebar.js?v=2"></script>
<script src="js/Toolbar.js"></script>
<script src="js/PlayControls.js"></script>
<script src="js/Modal.js?v=4"></script>
<script src="js/Ink.js"></script>
<script src="js/Dragger.js"></script>
<script src="js/Eraser.js"></script>
<script src="js/Labeller.js"></script>
<!-- Start it -->
<script>
window.onload = function(){
window.loopy = new Loopy();
};
</script>