This repository has been archived by the owner on Nov 4, 2019. It is now read-only.
forked from kforeman/GBDx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (81 loc) · 4.24 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html>
<!-- Author: Kyle Foreman (kforeman@post.harvard.edu)
Date: 3 January 2012
Purpose: Load charts etc for GBD visualization tool
-->
<head>
<!-- header/title stuff -->
<meta http-equiv='Content-Type' content='text/html;charset=utf-8'>
<title>GBDx</title>
<!-- load in d3 -->
<script type='text/javascript' src='lib/d3-2.7.4/d3.min.js'></script>
<script type='text/javascript' src='lib/d3-2.7.4/d3.geo.min.js'></script>
<script type='text/javascript' src='lib/d3-2.7.4/d3.csv.min.js'></script>
<script type='text/javascript' src='lib/d3-2.7.4/d3.layout.min.js'></script>
<script type='text/javascript' src='lib/colorbrewer.js'></script>
<!-- load in jquery libraries -->
<script type='text/javascript' src='lib/jquery-ui-1.8.16/js/jquery-1.7.min.js'></script>
<script type='text/javascript' src='lib/jquery-ui-1.8.16/js/jquery-ui-1.8.16.custom.min.js'></script>
<script type='text/javascript' src='lib/jquery-ui-1.8.16/js/jquery.ui.widget.js'></script>
<script type='text/javascript' src='lib/jquery-ui-1.8.16/js/jquery.poshytip.min.js'></script>
<script type='text/javascript' src='lib/jquery-ui-1.8.16/js/jquery.ui.widget.js'></script>
<script type='text/javascript' src='lib/jquery-ui-1.8.16/js/jquery.mousewheel.js'></script>
<script type='text/javascript' src='lib/jquery-ui-1.8.16/plugins/chosen/chosen.jquery.min.js'></script>
<link type='text/css' rel='stylesheet' href='lib/jquery-ui-1.8.16/css/custom-theme/jquery-ui-1.8.16.custom.css'/>
<link type='text/css' rel='stylesheet' href='lib/jquery-ui-1.8.16/css/custom-theme/poshytip.twitter.css'/>
<link type='text/css' rel='stylesheet' href='lib/jquery-ui-1.8.16/plugins/chosen/chosen.css'/>
<link type='text/css' rel='stylesheet' href='css/tip-twitter.css'/>
<!-- load Google web font (Open Sans) -->
<script type="text/javascript">
WebFontConfig = {
google: { families: [ 'Open+Sans:700italic,400italic,700,400:latin' ] }
};
(function() {
var wf = document.createElement('script');
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
'://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})();
</script>
<link type='text/css' rel='stylesheet' href='css/font.css'/>
<!-- load parameters (either defaults or parsed from hash) -->
<script type='text/javascript' src='js/settings.js'></script>
<!-- load resources (e.g. dropdown menu options, maps, etc) -->
<script type='text/javascript' src='resources/geo_list.js'></script>
<script type='text/javascript' src='resources/geojson_map.js'></script>
<!-- preload some data from the MySQL server -->
<script type='text/javascript' src='js/preload.js'></script>
<!-- load the functions necessary for data retrieval -->
<script type='text/javascript' src='js/data.js'></script>
<!-- well hello there, Mr iPad -->
<meta name="apple-mobile-web-app-capable" content="yes">
</head>
<body>
<!-- create the basic page layout -->
<script type='text/javascript' src='js/layout.js'></script>
<link type='text/css' rel='stylesheet' href='css/layout.css'/>
<!-- build the lefthand menu -->
<script type='text/javascript' src='js/menu.js'></script>
<link type='text/css' rel='stylesheet' href='css/menu.css'/>
<!-- build geographic maps -->
<script type='text/javascript' src='js/map.js'></script>
<link type='text/css' rel='stylesheet' href='css/map.css'/>
<!-- build treemaps -->
<script type='text/javascript' src='js/treemap.js'></script>
<link type='text/css' rel='stylesheet' href='css/treemap.css'/>
<!-- build stacked bar charts -->
<script type='text/javascript' src='js/sbar.js'></script>
<link type='text/css' rel='stylesheet' href='css/sbar.css'/>
<!-- build time/age plots -->
<script type='text/javascript' src='js/time_age.js'></script>
<link type='text/css' rel='stylesheet' href='css/time_age.css'/>
<!-- add some finishing touches to the viz -->
<script type='text/javascript' src='js/finishing_touches.js'></script>
<!-- switch to starting settings -->
<script type='text/javascript' src='js/load_defaults.js'></script>
</body>
</html>