-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
65 lines (61 loc) · 3.39 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
<!DOCTYPE html>
<head>
<base href="/">
<meta charset="utf-8">
<title>ThoughtSwap</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="An open source web app working toward more meaningful discussions.">
<meta name="keywords" content="classroom, discussion, collocated, group, app,
questions, tools, teaching, learning, educational, students">
<link rel="shortcut icon" href="assets/favicon.ico">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.css" />
<link rel="stylesheet" href="node_modules/font-awesome/css/font-awesome.min.css" />
<link rel="stylesheet" href="node_modules/textangular/dist/textAngular.css">
<link rel="stylesheet" href="node_modules/angular-toastr/dist/angular-toastr.css" />
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="app/facilitator/grid.styles.css">
<!--[if lt IE 9]>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<![endif]-->
</head>
<body ng-app="app">
<!--[if lt IE 9]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser.
Please <a href="http://browsehappy.com/">upgrade your browser</a> to
improve your experience.</p>
<![endif]-->
<div class="" ng-view=""></div>
<script src="node_modules/angular/angular.js"></script>
<script src="node_modules/jquery/dist/jquery.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.js"></script>
<script src="node_modules/angular-route/angular-route.js"></script>
<script src="node_modules/angular-cookies/angular-cookies.js"></script>
<script src="node_modules/angular-socket-io/socket.js"></script>
<script src="node_modules/angular-toastr/dist/angular-toastr.tpls.min.js"></script>
<script src="node_modules/angular-ui-bootstrap/dist/ui-bootstrap-tpls.js"></script>
<script src="node_modules/textangular/dist/textAngular-rangy.min.js"></script>
<script src="node_modules/textangular/dist/textAngular.min.js"></script>
<script src="node_modules/textangular/dist/textAngular-sanitize.min.js"></script>
<script src="node_modules/angular-auto-focus/angular-auto-focus.js"></script>
<!-- Custom solutions -->
<script src="assets/vendor/angular-morph.js"></script>
<script src="assets/vendor/angular-drag-and-drop-lists.js"></script>
<!-- Special http REF -->
<script src="/socket.io/socket.io.js"></script>
<script src="common/services/groups.service.js"></script>
<script src="common/services/logger.service.js"></script>
<script src="common/services/thought-socket.service.js"></script>
<script src="common/services/user.service.js"></script>
<script src="app.js"></script>
<script src="common/authentication/login/login.controller.js"></script>
<script src="common/authentication/register/register.controller.js"></script>
<script src="common/directives/tsHeader/tsHeader.js"></script>
<script src="common/directives/focusContentEditable.js"></script>
<script src="app/facilitator/groupManager/groupManager.controller.js"></script>
<script src="app/facilitator/facilitator.controller.js"></script>
<script src="app/participant/participant.controller.js"></script>
<!-- Added for Demo
<script src="app/demo/demo.controller.js"></script>
End of added for Demo -->
</body>
</html>