-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
34 lines (34 loc) · 892 Bytes
/
main.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>
<head>
<link rel='stylesheet' type='text/css' href='../../css/font-awesome.css'>
<style>
#content {
width: 90%;
margin-left: auto;
margin-right: auto;
}
#legend li {
cursor: pointer;
padding : 2px 0px;
}
</style>
</head>
<body>
<div id='content' style='padding: 16px;'>
<p>File association mining</p>
<h1 id='repo-title'></h1>
<div id='loader'>
<i class='fa fa-cog fa-spin'></i>
<span id='status'>Starting App.</span>
</div>
<h3 id='chart-title'></h3>
<div id='chart'></div>
<h3 id='legend-title'></h3>
<div id='legend'></div>
</div>
<script src="../../shared/jquery.min.js"></script>
<script src="../../shared/underscore.min.js"></script>
<script async=true src="./main.js"></script>
</body>
</html>