diff options
Diffstat (limited to 'www/js')
| -rw-r--r-- | www/js/app.js | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/www/js/app.js b/www/js/app.js index b96482e8..0d95a502 100644 --- a/www/js/app.js +++ b/www/js/app.js @@ -1252,6 +1252,16 @@ angular.module('zmApp', [ $ionicConfigProvider.navBar.alignTitle('center'); $stateProvider + .state('app', { + url: '/', + abstract: true, + templateUrl: 'index.html', + cache: false, + //controller: 'AppCtrl' + }) + + + .state('login', { data: { requireLogin: false @@ -1280,14 +1290,7 @@ angular.module('zmApp', [ controller: 'zmApp.NewsCtrl', }) - .state('app', { - url: '/', - abstract: true, - templateUrl: 'index.html', - cache: false, - //controller: 'AppCtrl' - }) - + .state('monitors', { data: { |
