-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (47 loc) · 1.97 KB
/
Copy pathindex.html
File metadata and controls
53 lines (47 loc) · 1.97 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="styles/topologicalView.css">
<link rel="stylesheet" href="styles/timeseriesView.css">
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.1/themes/base/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js"></script>
<script src="scripts/jquery/jquery.ui.touch-punch.min.js"></script>
<script src="scripts/d3/d3.v3.min.js"></script>
<script src="scripts/d3/d3.layout.js"></script>
<script src="scripts/cubism/cubism.v1.min.js"></script>
<script src="scripts/heatmap/heatmap.js"></script>
<script src="scripts/topologicalView.js"></script>
<script src="scripts/timeseriesView.js"></script>
<script src="scripts/floorView.js"></script>
<script src="scripts/main.js"></script>
</head>
<body>
<header id="menuBar"><img src="images/cmu_wordmark.gif">
<nav><ol>
<li>Dashboard</li>
<li>Log</li>
</ol></nav>
</header>
<div id="topologicalView" class="view">
<div id="topologicalSlider" style="height: 160px;"></div>
<button id="topologicalPin">pin</button>
</div>
<div id="geographicalView" class="view">
<div id="geographicalContainer"></div>
</div>
<div id="dashboardView" class="view hidden">
<ol id="dashFilter">
<li>bad</li>
<li>avg</li>
<li>good</li>
<li class="active">all</li>
</ol>
</div>
<div id="logView" class="view hidden"> </div>
</body>
</html>