-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1010 Bytes
/
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>
<head>
<style>
body {
margin: 0px;
}
#warning {
color: red;
visibility: hidden;
}
#warning.active {
visibility: visible;
}
textarea {
float: left;
}
</style>
<!-- Load the web-animations-js polyfill from GitHub directly if the submodule hasn't been loaded. -->
<script src="https://rawgithub.com/web-animations/web-animations-js/master/web-animations.js"></script>
<script src="js/web-animations/web-animations.js"></script>
<script src="js/data.js"></script>
<script src="js/graph.js"></script>
<script src="js/main.js"></script>
<script src="js/timing-model.js"></script>
<script src="js/ui.js"></script>
</head>
<body>
<canvas id="canvas"></canvas>
<div id="warning">Input JSON not parseable: <span id="warningReason"></span></div>
<textarea id="dataTextView" rows="24" cols="50"></textarea>
<button id="saveButton" title="Ctrl-S in text area">SAVE</button>
<button id="clearSavesButton" title="Alt-C in text area">CLEAR SAVES</button>
<div id="loadButtonContainer"></div>
</body>