summaryrefslogtreecommitdiff
path: root/www/js/LoginCtrl.js
diff options
context:
space:
mode:
authorPliable Pixels <pliablepixels@gmail.com>2018-01-07 17:24:16 -0500
committerPliable Pixels <pliablepixels@gmail.com>2018-01-07 17:24:16 -0500
commit9c41352c661460f10d35c31292b5d80420b8fa9c (patch)
tree35ef21c42750c65f53237369e0f441e86d89870a /www/js/LoginCtrl.js
parent92ea11058bf3ca356f09fabd5f6bc67ff63bdddb (diff)
#499 fixed onTap messing up event server URL and restore inconsistencies
Diffstat (limited to 'www/js/LoginCtrl.js')
-rw-r--r--www/js/LoginCtrl.js10
1 files changed, 8 insertions, 2 deletions
diff --git a/www/js/LoginCtrl.js b/www/js/LoginCtrl.js
index 731949e9..b27a1203 100644
--- a/www/js/LoginCtrl.js
+++ b/www/js/LoginCtrl.js
@@ -312,7 +312,13 @@ angular.module('zmApp.controllers').controller('zmApp.LoginCtrl', ['$scope', '$r
else
{
var savedData;
- localforage.getItem("settings-temp-data").then(function(value)
+
+ // this thing is crappy - not sure why it keeps removing
+ // ES stuff. removing it as of Jan 18
+ // this means if you back out while entering login data
+ // you'll get a blank. small price to pay...
+
+ /*localforage.getItem("settings-temp-data").then(function(value)
{
savedData = value;
//= zmStorageService.getObject ("settings-temp-data");
@@ -327,7 +333,7 @@ angular.module('zmApp.controllers').controller('zmApp.LoginCtrl', ['$scope', '$r
{
NVRDataModel.log("Not recovering login data as its empty");
}
- });
+ });*/
}
oldLoginData = JSON.stringify($scope.loginData);