-
Notifications
You must be signed in to change notification settings - Fork 0
/
graph.html
34 lines (28 loc) · 1.26 KB
/
graph.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>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="css/main.css"/>
<meta charset="utf-8">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
</head>
<body style="background-color:#FFFFFF;">
<div id="graph-loading" class="panel-body" style="position: absolute;
top: 50%;
left: 46%;
margin-top: -50px;
margin-left: -50px;
width: 200px;
height: 100px;">
<span class="glyphicon glyphicon-refresh glyphicon-refresh-animate"></span> <b>Rendering graph ...</b>
</div>
<div id="graph"></div>
</body>
<!--<div id="graphdiv"></div>-->
<script>if (typeof module === 'object') {window.module = module; module = undefined;}</script>
<script> window.$ = window.jQuery = require('jquery') </script>
<script> require('popper.js') </script>
<script> require('bootstrap') </script>
<script src="js/graph.js"></script>
<script>if (window.module) module = window.module;</script>
</html>