diff options
| author | PliablePixels <pliablepixels@gmail.com> | 2015-06-17 11:37:36 -0400 |
|---|---|---|
| committer | PliablePixels <pliablepixels@gmail.com> | 2015-06-17 11:37:36 -0400 |
| commit | 32caa920e903d0895488089c30ffec9338482df6 (patch) | |
| tree | 527af89e9a5676eafbac6ab2acb5a466e6953cac /www/js/app.js | |
| parent | c826098ee78f727de9af881d8fd6ffd229b98481 (diff) | |
Updated to latest version of ionic, cordova, removed unused libraries
Diffstat (limited to 'www/js/app.js')
| -rw-r--r-- | www/js/app.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/js/app.js b/www/js/app.js index a19f6a7d..dc50e41d 100644 --- a/www/js/app.js +++ b/www/js/app.js @@ -6,7 +6,7 @@ // core app start stuff angular.module('zmApp', [ 'ionic', - 'zmApp.controllers' + 'zmApp.controllers', ]) @@ -339,7 +339,7 @@ angular.module('zmApp', [ // if none of the above states are matched, use this as the fallback - var defaultState = "/monitors"; + var defaultState = "/montage"; //var defaultState = "/login"; // as it turns out I can't really inject a factory in config the normal way // FIXME: In future, read up http://stackoverflow.com/questions/15937267/inject-service-in-app-config @@ -353,7 +353,7 @@ angular.module('zmApp', [ $urlRouterProvider.otherwise(function ($injector, $location) { var $state = $injector.get("$state"); - $state.go("monitors"); + $state.go("montage"); }); }); |
