Fix JavaScript of login page of mobile version

pull/91/head
Francis Lachapelle 2014-11-27 09:24:26 -05:00
parent 1ca1a8c249
commit 876b21437f
1 changed files with 7 additions and 7 deletions

View File

@ -4,10 +4,10 @@
(function() {
'use strict';
angular.module('SOGo.RootPage', ['SOGo.Authentication', 'SOGo.UIMobile', 'ionic'])
angular.module('SOGo.MainUI', ['SOGo.Authentication', 'SOGo.UIMobile', 'ionic'])
.constant('sgSettings', {
'baseURL': ApplicationBaseURL
baseURL: ApplicationBaseURL
})
.run(function($ionicPlatform) {
@ -28,17 +28,17 @@
$stateProvider
.state('app', {
url: "/app",
url: '/app',
abstract: true,
templateUrl: "menu.html",
templateUrl: 'menu.html',
controller: 'AppCtrl'
})
.state('app.login', {
url: "/login",
url: '/login',
views: {
'menuContent': {
templateUrl: "login.html",
menuContent: {
templateUrl: 'login.html',
controller: 'LoginCtrl'
}
}