-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
43 lines (41 loc) · 1.45 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
<!DOCTYPE html>
<html>
<head>
<script src="js/lib/jquery-1.5.2.min.js"></script>
<script src="js/lib/numeral.min.js"></script>
<script src="js/lib/lodash.js"></script>
<script src="js/lib/color.js"></script>
<script src="js/app.js"></script>
<script src="js/race.js"></script>
<script src="js/lane.js"></script>
<script src="js/driver.js"></script>
<script src="js/car.js"></script>
<script src="js/session.js"></script>
<script src="js/points.js"></script>
<script src="js/widgets/notify.js"></script>
<script src="js/widgets/graph.js"></script>
<script src="js/widgets/lane_monitor.js"></script>
<script src="js/widgets/race_history.js"></script>
<script src="js/widgets/summary.js"></script>
<script src="js/widgets/sounds.js"></script>
<script src="js/widgets/menu.js"></script>
<script src="js/widgets/change_settings.js"></script>
<!--<script src="js/widgets/session_history.js"></script>-->
<link href="css/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="page">
<div id="header">
<h1>Scalextric Lap Timer</h1>
</div>
</div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-1761928-2', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>