-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
57 lines (39 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Eat Me 2</title>
<link rel="shortcut icon" type="image/x-icon"
href="https://static1.squarespace.com/static/5993d042cd39c3ca7418261b/t/5b2f1e8e575d1fd7839cfee1/favicon.ico">
<script type="application/javascript" src="js/main.js"></script>
<script src="https://d3js.org/d3.v5.min.js"></script>
<script src="https://d3js.org/d3-dsv.v1.min.js"></script>
<script src="https://d3js.org/d3-fetch.v1.min.js"></script>
<!-- D3 Sankey -->
<script src="https://unpkg.com/d3-array@1"></script>
<script src="https://unpkg.com/d3-collection@1"></script>
<script src="https://unpkg.com/d3-path@1"></script>
<script src="https://unpkg.com/d3-shape@1"></script>
<script src="https://unpkg.com/d3-sankey@0"></script>
<!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" ></script>-->
<!-- TODO run a loop so we insert all data files in here -->
<script src="data/json/0.js"></script>
<script>
window.exports = {};
</script>
<script src="js/react-docker-app/src/mock_data/fake_pt.js"></script>
<script src="js/react-docker-app/src/mock_data/masks.js"></script>
<script src="js/tray/drawpath.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<h1>Eat Me 2!</h1>
<div id="workspace"></div>
<div id="graph">
</div>
<script type="application/javascript">
drawTrayWithOverlay("#workspace", 0);
plotGraph();
</script>
</body>
</html>