You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bug: Browser storage mantein clear when $localstorage.$reset and try to load the same data. $localstorage.$reset($localstorage); // Brower Local Storage are empty
The cause: On $reset the _last$storage variable is not clear and this make that on $apply the conditon always is true: if (!angular.equals($storage, _last$storage))
Fix (suggested):
$reset: function(items) {
for (var k in $storage) {
'$' === k[0] || (delete $storage[k] && webStorage.removeItem(storageKeyPrefix + k));
}
_last$storage={};
return $storage.$default(items);
},
The text was updated successfully, but these errors were encountered:
A hack that would work without changing the code would be:
constitems=$localstorage;$localstorage.$reset();$localstorage.$apply();// force storing the data to make sure _last$storage is overwritten.$localstorage.$reset(items);
Bug: Browser storage mantein clear when $localstorage.$reset and try to load the same data.
$localstorage.$reset($localstorage); // Brower Local Storage are empty
The cause: On $reset the _last$storage variable is not clear and this make that on $apply the conditon always is true:
if (!angular.equals($storage, _last$storage))
Fix (suggested):
The text was updated successfully, but these errors were encountered: