Fix redirection URLs in JavaScript

This commit is contained in:
Francis Lachapelle
2014-08-11 10:10:25 -04:00
parent 54103124e8
commit af5489bf57
4 changed files with 12 additions and 8 deletions

View File

@@ -7,7 +7,7 @@
angular.module('SOGo.RootPage', ['SOGo.Authentication', 'SOGo.UIMobile', 'ionic'])
.constant('sgSettings', {
'baseURL': '/SOGo/so/francis/'
'baseURL': ApplicationBaseURL
})
.run(function($ionicPlatform) {
@@ -48,9 +48,9 @@
$urlRouterProvider.otherwise('/app/login');
})
.controller('AppCtrl', function($scope) {
$scope.ApplicationBaseURL = ApplicationBaseURL;
})
.controller('AppCtrl', ['$scope', 'sgSettings', function(Settings, $scope) {
$scope.ApplicationBaseURL = Settings.baseURL;
}])
.controller('LoginCtrl', ['$scope', 'Authentication', 'sgDialog', function($scope, Authentication, Dialog) {
$scope.creds = { 'username': null, 'password': null };