-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
72 lines (62 loc) · 2.23 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
<!DOCTYPE html>
<html >
<head >
<meta charset="utf-8" >
<meta name="viewport"
content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width" >
<title ></title >
<!-- compiled css output -->
<link href="css/ionic.app.css"
rel="stylesheet" >
<!-- ionic/angularjs js -->
<script src="lib/ionic/js/ionic.bundle.js" ></script >
<script src="lib/ngCordova/dist/ng-cordova.js" ></script >
<script src="lib/firebase/firebase.js" ></script >
<script src="lib/angularfire/dist/angularfire.min.js" ></script >
<script src="lib/lodash/dist/lodash.min.js" ></script >
<script src="lib/moment/moment.js" ></script >
<script src="lib/angular-moment/angular-moment.min.js" ></script >
<script src="lib/openfb/openfb.js" ></script >
<script src="lib/openfb/ngopenfb.js" ></script >
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyCLlVDkflfbBnaLukMtPeF-Xb44jwc5LCM",
authDomain: "foochat-f4779.firebaseapp.com",
databaseURL: "https://foochat-f4779.firebaseio.com",
storageBucket: "foochat-f4779.appspot.com"
};
firebase.initializeApp(config);
</script>
<!-- cordova script (this will be a 404 during development) -->
<script src="cordova.js" ></script >
<!-- your app's js -->
<script src="js/app.js" ></script >
<script src="js/filters/favoriteslist.js" ></script >
<script src="js/filters.js" ></script >
<script src="js/controllers/intro.js" ></script >
<script src="js/controllers/search.js" ></script >
<script src="js/controllers/show.js" ></script >
<script src="js/controllers/menu.js" ></script >
<script src="js/controllers.js" ></script >
<script src="js/services/shows.js" ></script >
<script src="js/services/user.js" ></script >
<script src="js/services/utils.js" ></script >
<script src="js/services.js" ></script >
</head >
<body ng-app="tvchat" >
<!--
The nav bar that will be updated as we navigate between views.
-->
<ion-nav-bar class="bar-positive" >
<ion-nav-back-button >
</ion-nav-back-button >
</ion-nav-bar >
<!--
The views will be rendered in the <ion-nav-view> directive below
Templates are in the /templates folder (but you could also
have templates inline in this html file if you'd like).
-->
<ion-nav-view ></ion-nav-view >
</body >
</html >