-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (38 loc) · 1.68 KB
/
index.html
File metadata and controls
44 lines (38 loc) · 1.68 KB
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
<html ng-app="MyApp">
<head>
<title>Chat Tasker</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<!-- Include the application stlyes -->
<link rel="stylesheet" href="static/css/bootstrap.min.css">
<link rel="stylesheet" href="static/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="static/css/styles.css">
<link rel="stylesheet" href="static/css/animations.css">
</head>
<body ng-controller="AppController">
<div ng-view></div>
<!-- Include the Angular Framework and other project dependencies. -->
<script src='static/js/angular.js'></script>
<script src='static/js/angular-route.js'></script>
<script src='static/js/angular-animate.js'></script>
<script src='static/js/firebase.js'></script>
<script src='static/js/angularfire.min.js'></script>
<script src="static/js/jquery.js"></script>
<script src="static/js/bootstrap.min.js"></script>
<!-- Add the Angular Controller & Models-->
<script src='controller/AppController.js'></script>
<script src='controller/UserController.js'></script>
<script src='controller/PublicChatController.js'></script>
<script src='controller/PrivateChatController.js'></script>
<script src='controller/TaskController.js'></script>
<script src='model/PublicChatModel.js'></script>
<script src='model/PrivateChatModel.js'></script>
<script src='model/UserModel.js'></script>
<script>
//log the user out when they leave the site.
$(window).bind('unload',function(event){
$('#logout').trigger('click');
});
</script>
</body>
</html>