-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
47 lines (45 loc) · 1.36 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
<html>
<head>
<link rel='stylesheet' type='text/css' href='../../css/font-awesome.css'>
<link rel='stylesheet' type='text/css' href='./app.css'>
</head>
<body>
<div class='things'>
<div id='loading'>
<i class='fa fa-cog fa-spin'></i>
<span id='status'>Running Boa Query</span>
</div>
<div id='content' hidden="hidden">
<h3 id='app-title'> Number of Null Checked Files in Revision </h3>
<div id='output'>
<canvas id="chart-output"> </canvas>
</div>
<div id='controls'>
<form>
<label for="numToShow">Number of results shown</label>
<select id='numToShow'>
</select>
</form>
</div>
<div id='table-output'>
<table style="">
<thead>
<tr>
<th></th>
<th>Revision date</th>
<th># of Null Check files</th>
</tr>
</thead>
<tbody id='table-output-body'>
</tbody>
</table>
</div>
</div>
</div>
<script src="../../shared/jquery.min.js"></script>
<script src="../../shared/chart.min.js"></script>
<script src="../../shared/underscore.min.js"></script>
<script src="./lib/color-scheme.min.js"></script>
<script src="./main.js"></script>
</body>
</html>