-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (39 loc) · 1.89 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 ng-app="app">
<head>
<meta charset="utf-8">
<title>Google Analytics Example</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<meta name="format-detection" content="telephone=no">
<!-- Google Analytics -->
<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',
'https://www.google-analytics.com/analytics.js', 'ga');
/* Change the below value to your Google Analytics number */
ga('create', 'UA-########-#', 'auto');
</script>
<!-- End Google Analytics -->
</head>
<body>
<div>
<ui-view></ui-view>
</div>
<script src="/node_modules/angular/angular.min.js"></script>
<script src="/node_modules/angular-ui-router/release/angular-ui-router.min.js"></script>
<script src="/node_modules/angulartics/dist/angulartics.min.js"></script>
<script src="/node_modules/angulartics-google-analytics/dist/angulartics-ga.min.js"></script>
<script src="/node_modules/lodash/lodash.min.js"></script>
<script src="/src/app.module.js"></script>
<script src="/src/app.config.js"></script>
<script src="/src/app.route.js"></script>
<script src="/src/common/analytics.service.js"></script>
<script src="/src/main/step-1.controller.js"></script>
<script src="/src/main/step-2.controller.js"></script>
<script src="/src/main/step-3.controller.js"></script>
<script src="/src/main/confirm.controller.js"></script>
</body>
</html>