summaryrefslogtreecommitdiff
path: root/www/js
diff options
context:
space:
mode:
authorPliable Pixels <pliablepixels@gmail.com>2017-03-10 09:56:22 -0500
committerPliable Pixels <pliablepixels@gmail.com>2017-03-10 09:56:22 -0500
commit2503874f3da1bf922e6f693740d8193b4ad002a7 (patch)
treed9b6dfd171fa0305932c8aaeab60d0067bf06c39 /www/js
parent34017ca3792a966d8afe698f9d5ae9379c2bbe1f (diff)
#459 - forgot to return after resolve, was falling through into auth
Diffstat (limited to 'www/js')
-rwxr-xr-xwww/js/app.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/www/js/app.js b/www/js/app.js
index 7df17a9d..13f1378a 100755
--- a/www/js/app.js
+++ b/www/js/app.js
@@ -925,6 +925,7 @@ angular.module('zmApp', [
d.resolve("Login Success");
$rootScope.$emit('auth-success', 'no auth');
+ return (d.promise);
}