-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·68 lines (61 loc) · 2.4 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
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ONCAT</title>
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto|Raleway:600,400,200' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="lib/materialize/css/materialize.min.css">
<link rel="stylesheet" href="styles/main.css">
<!-- Plugins -->
<script type="text/javascript" src="lib/jquery-2.1.1.min.js"></script>
<script src="lib/materialize/js/materialize.min.js"></script>
<script src="lib/d3.min.js"></script>
</head>
<body>
<!-- This is our Materialize.css settings panel on the left side of the test container -->
<ul id="slide-out" class="side-nav fixed" >
<li class="logo">
<a href="http://www.oncat.ca">
<img src="styles/pic/oncat-top-logo.png" height="47">
</a>
</li>
<li>
<!-- The user selected property drop downs -->
<div style="width:180px">
<div class="settings-label">
<p>Institutions & Agreement Pathways</p>
<div id="institution-info"></div>
</div>
<div class="legendBox">
</div>
<div class="input-field col s12 data-filter">
<select onchange="updateData(this.value);">
<option value="2016">2016</option>
<option value="2012">2012</option>
</select>
<label>Year</label>
</div>
<div class="input-field col s12 contract-filter">
<select onchange="updateContract(this.value);">
<option value="all">All</option>
<option value="bilateral">Bilateral</option>
<option value="multilateral">Multilateral</option>
<option value="system">System</option>
</select>
<label>Type</label>
</div>
</div>
</li>
</ul>
<a href="#" data-activates="slide-out" class="button-collapse show-on-large"><i class="mdi-navigation-menu"></i></a>
<!-- main content container-->
<main>
<div id="graph_container" class="z-depth-0">
<div><a id="backBtn" class="waves-effect waves-light btn" onclick="resumeMainView()">Back</a></div>
<div id="graph"></div>
</div>
</main>
<script src="main.js"></script>
</body>
</html>