gsklee / ngStorage

localStorage and sessionStorage done right for AngularJS.
MIT License
2.33k stars 461 forks source link

$localStotage does't work in $window.onbeforeunload callback function #229

Open sighWang opened 8 years ago

sighWang commented 8 years ago

$window.onbeforeunload = function(e) { $localStorage.contractForm = vm.contractForm; //does't work here var dialogText = ''; e.returnValue = dialogText; return dialogText; };

egilkh commented 8 years ago

ngStorage's onbefore function should (if allowed) be run before this. But it might not be. Will look into it.