-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
63 lines (49 loc) · 1.83 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CiwVis</title>
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Get bootstrap -->
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<script src="bootstrap/js/bootstrap.min.js"></script>
<!-- Include css style cheet -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- D3 Version 4 -->
<script src="https://d3js.org/d3.v4.min.js"></script>
<!-- Jstat -->
<script src="https://cdn.jsdelivr.net/jstat/latest/jstat.min.js"></script>
<!-- Colorbrewer Library for colour scales -->
<script src="https://d3js.org/colorbrewer.v1.js"></script>
<!-- Add own functions -->
<script src="js/formfunctions.js"></script>
<!-- Add favicon -->
<link rel='shortcut icon' href='static/favicon.ico' type='image/x-icon'/>
</head>
<header>
<div id="minititle">CiwVis 0.0.1</div>
<div class="btn-group" id="datasourcebutton">
<button id='clearbutton' class="btn btn-topbar" onclick="window.location.reload()"> <span class="glyphicon glyphicon-remove-sign"></span> Clear</button>
<label class="btn btn-topbar" id="filechooser">
<span class="glyphicon glyphicon-folder-open"></span> Browse...
<input type="file" style="display: none;" multiple directory webkitdirectory id="fileInput" onchange="refresh_page(); this.disabled=true; document.getElementById('filechooser').disabled=true;">
</label>
</div>
</header>
<h1>CiwVis</h1>
<body>
<div id="histholder">
</div>
<div id="tsholder">
</div>
<div id="tsqlholder">
</div>
<div id="pdfholder">
</div>
<div id="bpndholder">
</div>
<div id="bpclsholder">
</div>
</body>
</html>