26 lines
751 B
JavaScript
26 lines
751 B
JavaScript
|
'use strict';
|
||
|
|
||
|
angular.module('ffhb', [
|
||
|
'ngTable',
|
||
|
'ngResource',
|
||
|
'ngCookies',
|
||
|
'ui.router',
|
||
|
'angularMoment',
|
||
|
'ui-leaflet',
|
||
|
'Authentication',
|
||
|
'angular-web-notification',
|
||
|
'config'
|
||
|
])
|
||
|
.config(['$urlRouterProvider',function ($urlRouterProvider){
|
||
|
//,$httpProvider) {
|
||
|
$urlRouterProvider.otherwise('/nodes/sort');
|
||
|
//$locationProvider.html5Mode(true).hashPrefix('!');
|
||
|
//$httpProvider.defaults.withCredentials = true;
|
||
|
}]).run(function(amMoment,$cookieStore,$rootScope,$http) {
|
||
|
amMoment.changeLocale('de');
|
||
|
$rootScope.globals = $cookieStore.get('globals') || {};
|
||
|
if ($rootScope.globals.currentUser) {
|
||
|
$http.defaults.headers.common['Authorization'] = 'Basic ' + $rootScope.globals.currentUser.authdata; // jshint ignore:line
|
||
|
}
|
||
|
});
|