forked from linnovate/mean
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
21 lines (19 loc) · 858 Bytes
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//Setting up route
window.app.config(['$routeProvider', function($routeProvider) {
$routeProvider.
when('/articles', { templateUrl: 'views/articles/list.html' }).
when('/articles/create', { templateUrl: 'views/articles/create.html' }).
when('/articles/:articleId/edit', { templateUrl: 'views/articles/edit.html' }).
when('/articles/:articleId', { templateUrl: 'views/articles/view.html' }).
when('/', { templateUrl: 'views/index.html' }).
otherwise({redirectTo: '/'});
}]);
//Removing tomcat unspported headers
window.app.config(['$httpProvider', function($httpProvider, Configuration) {
//delete $httpProvider.defaults.headers.common["X-Requested-With"];
}]);
//Setting HTML5 Location Mode
window.app.config(['$locationProvider', function($locationProvider) {
//$locationProvider.html5Mode(true);
$locationProvider.hashPrefix("!");
}]);