-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
23 lines (21 loc) · 1002 Bytes
/
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
//Setting up route
window.app.config(['$routeProvider', function($routeProvider) {
$routeProvider.
when('/articles', { templateUrl: 'views/articles/list.html' }).
when('/mean/commits', { templateUrl: 'views/gitHub/meanCommits.html' }).
when('/mean/daily', { templateUrl: 'views/gitHub/meanDaily.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("!");
}]);