-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (41 loc) · 1.54 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
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/style.css"/>
</head>
<body>
<div id="commands">
<label for="mode">View:</label>
<select id="mode">
<option value="latest">Latest game</option>
<option value="second-latest">Second latest game</option>
<option value="third-latest">Third latest game</option>
<option value="overall">Overall</option>
<option value="weighted">Weighted</option>
</select>
<span id="gameTimestamp"> </span>
</div>
<div id="charts">
<div id="points-chart" class="chart"> </div>
<div id="efficiency-chart" class="chart"> </div>
<div id="kills-chart" class="chart"> </div>
<div id="passive-kills-chart" class="chart"> </div>
<div id="nemeses-chart" class="chart"> </div>
<div id="shots-chart" class="chart"> </div>
<div id="favflags-chart" class="chart"> </div>
<div id="flags-chart" class="chart"> </div>
<div id="pickups-chart" class="chart"> </div>
<div id="games-chart" class="chart"> </div>
</div>
<script src="js/jquery-2.1.1.min.js"></script>
<script src="js/env.js"></script>
<script src="js/ui.js"></script>
<script src="js/api.js"></script>
<script src="js/charts.js"></script>
<script src="js/google_jsapi.js"></script>
<script>
google.load('visualization', '1.0', {'packages':['corechart']});
google.setOnLoadCallback(drawCharts);
</script>
</body>
</html>