diff options
| author | pliablepixels <pliablepixels@gmail.com> | 2016-02-25 11:47:04 -0500 |
|---|---|---|
| committer | pliablepixels <pliablepixels@gmail.com> | 2016-02-25 11:47:04 -0500 |
| commit | d40790f9d899d1bc734f85c1b70e5061dbfa3363 (patch) | |
| tree | 540c6b410740909400d5f3f73e4cbf18328ca368 | |
| parent | a293c169ece87b5cfbdc58628dfe32c50b557aea (diff) | |
nits
Former-commit-id: a873e43c08ef32358c0463b0779758c32718a86a
| -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: { |
