diff options
| author | pliablepixels <pliablepixels@gmail.com> | 2016-05-01 17:25:43 -0400 |
|---|---|---|
| committer | pliablepixels <pliablepixels@gmail.com> | 2016-05-01 17:25:43 -0400 |
| commit | 7613d937e3c5b0cc704cbb564dbf43d35eaee4f6 (patch) | |
| tree | 132f2d09ff687f17baa0894cf84b2f29cdad839f /www/js/PortalLoginCtrl.js | |
| parent | fbf7d86a7664cbcf45d3cb6f2c4ad5157055bec1 (diff) | |
#234 - mostly working, needs more testing.
Former-commit-id: 80ac0f72b66cfec1dc14353e010658acb176fa2c
Diffstat (limited to 'www/js/PortalLoginCtrl.js')
| -rw-r--r-- | www/js/PortalLoginCtrl.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/js/PortalLoginCtrl.js b/www/js/PortalLoginCtrl.js index abd4641a..5ac5aed6 100644 --- a/www/js/PortalLoginCtrl.js +++ b/www/js/PortalLoginCtrl.js @@ -89,7 +89,7 @@ angular.module('zmApp.controllers').controller('zmApp.PortalLoginCtrl', ['$ionic disableAnimate: true, disableBack: true }); - $state.go('login'); + $state.go("login" ,{"wizard": false}); } else { @@ -221,13 +221,13 @@ angular.module('zmApp.controllers').controller('zmApp.PortalLoginCtrl', ['$ionic disableAnimate: true, disableBack: true }); - $state.go('login'); + $state.go("login" ,{"wizard": false}); } else { // if user cancelled auth I guess we go to login $rootScope.userCancelledAuth = false; - $state.go('login'); + $state.go("login" ,{"wizard": false}); } }); } |
