-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathindex.html
43 lines (41 loc) · 1.61 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="MyApp">
<head>
<title>My Angular App</title>
<link rel="stylesheet" type="text/css" href="./bower_components/gumby/css/gumby.css" />
<link rel="stylesheet" type="text/css" href="./bower_components/font-awesome/css/font-awesome.css" />
<link rel="stylesheet" type="text/css" href="./app.css" />
</head>
<body>
<div ng-view></div>
<script type="text/javascript" src="./bower_components/angular/angular.js"></script>
<script type="text/javascript" src="./bower_components/angular-route/angular-route.js"></script>
<script type="text/javascript" src="./bower_components/angular-messages/angular-messages.js"></script>
<script type="text/javascript" src="./survey-index.js"></script>
<script type="text/javascript" src="./survey-common.js"></script>
<script type="text/javascript" src="./survey-editor.js"></script>
<script type="text/javascript" src="./survey-preview.js"></script>
<script type="text/javascript">
angular.module("MyApp", ['ngRoute', 'SurveyIndex', 'SurveyEditor', 'SurveyPreview'])
.config(['$routeProvider', function($routeProvider) {
$routeProvider.when('/new', {
controller: 'SurveyEditorPageController as pageCtrl',
templateUrl : './survey-editor.html'
});
$routeProvider.when('/preview/:id', {
templateUrl : './survey-preview.html'
});
$routeProvider.when('/', {
templateUrl : './survey-index.html'
});
$routeProvider.when('/edit/:id',{
controller: 'SurveyEditorPageController as pageCtrl',
templateUrl : './survey-editor.html'
});
$routeProvider.otherwise({
redirectTo: '/'
});
}])
</script>
</body>
</html>