istic-openstack/client/js/app.js
Loic GUEGAN cc6f0008e3 Apply
2016-04-27 19:06:34 +02:00

38 lines
1 KiB
JavaScript

/**
* The main app module instance
* @type angular.module.angular-1_3_6_L1749.moduleInstance
*/
var mainApp=angular.module("mainApp",['ngRoute', 'ngSanitize', 'ngCookies','lr.upload']);
/**
* Configure routeProvider
*/
mainApp.config(['$routeProvider', function($routeProvider){
$routeProvider.
when('/home',{
templateUrl: 'partials/home/home.html'
//controller: 'homeCtrl'
}).
when('/network',{
templateUrl: 'partials/network/network.html'
//controller: 'networkCtrl'
}).
when('/image',{
templateUrl: 'partials/image/image.html'
//controller: 'imageCtrl'
})
.otherwise({
redirectTo: '/home'
});
}]);
/**
* Configure httpProvider
*/
mainApp.config(['$httpProvider', function($httpProvider){
$httpProvider.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded; charset=UTF-8';
}]);