-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (32 loc) · 1.11 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
<!doctype html>
<html lang=en>
<head>
<meta charset=utf-8>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://unpkg.com/viz.js@1.8.0/viz.js" type="javascript/worker"></script>
<script src="https://unpkg.com/d3-graphviz@1.4.0/build/d3-graphviz.min.js"></script>
<!-- <script type="text/javascript" language="javascript" src="all.js"></script> -->
<link href="style.css" rel="stylesheet">
<title>OATMEAL Techtree</title>
</head>
<body>
<div id="graph"></div>
<!-- modal -->
<div id="presentation-overlay"
class="overlay">
<div class="popup">
<!-- <h2 id="popup-heading">Info box</h2> -->
<a class="close" id="close-popup" href="#">×</a>
<div class="popup-content">
<iframe id="presentation-frame"
src=""
frameborder="0"
allowfullscreen="true"
mozallowfullscreen="true"
webkitallowfullscreen="true"></iframe>
</div>
</div>
</div>
<script type="text/javascript" src="index.js"></script>
</body>
</html>