forked from sethetter/startupwichita.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
47 lines (43 loc) · 1.44 KB
/
config.js
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
(function(angular) {
'use strict';
//Setting up route
var RouteProvider = [
'$stateProvider', '$urlRouterProvider',
function($stateProvider, $urlRouterProvider) {
// For unmatched routes:
$urlRouterProvider.otherwise('/');
// states for my app
$stateProvider
.state('all articles', {
url: '/articles',
templateUrl: 'views/articles/list.html'
})
.state('create article', {
url: '/articles/create',
templateUrl: 'views/articles/create.html'
})
.state('edit article', {
url: '/articles/:articleId/edit',
templateUrl: 'views/articles/edit.html'
})
.state('article by id', {
url: '/articles/:articleId',
templateUrl: 'views/articles/view.html'
})
.state('home', {
url: '/',
templateUrl: 'views/index.html'
});
}
];
//Setting HTML5 Location Mode
var LocationProvider = [
'$locationProvider',
function($locationProvider) {
$locationProvider.hashPrefix('!');
}
];
angular.module('startupwichita')
.config(RouteProvider)
.config(LocationProvider);
})(window.angular);