-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvisualize.html
More file actions
53 lines (44 loc) · 1.28 KB
/
visualize.html
File metadata and controls
53 lines (44 loc) · 1.28 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<html>
<head>
<!-- SystemJS -->
<script src="jspm_packages/system.js"></script>
<script src="config.js"></script>
<script>
System.import('d3.min.js').then(function(){
System.import('fisheye.js')
System.import('awesomplete.js')
System.import('graph.js')
})
</script>
<!-- other/legacy -->
<script src="dagre.min.js"></script>
<!--script src="d3.min.js"></script-->
<!--script src="fisheye.js"></script-->
<!--script src="superformula.js"></script-->
<!--script src="awesomplete.js" async></script-->
<link rel="stylesheet" href="awesomplete.css" />
</head>
<style>
.circle {
stroke: #fff;
}
.link {
stroke=width: 1px;
stroke-opacity: .6;
stroke: #999;
}
.extensionArc {
stroke=width: 3px;
stroke-opacity: .6;
stroke: none;
fill: blue;
}
</style>
<body style="margin: 0px">
<div style="position:absolute; z-index: 100; visibility: hidden; opacity: 1" id="awesompleteContainer">
<input id="inputBar" />
</div>
<!--script src="graph.js"></script-->
<script>document.write('<script src="http://' + (location.host || 'localhost').split(':')[0] + ':35729/livereload.js?snipver=1"></' + 'script>')</script>
</body>
</html>