Open RuslanKim opened 6 years ago
Usage of app-localstorage-document.js
static get template() { return html`<app-localstorage-document key="user-auth-info" data="{{userInfo}}"></app-localstorage-document>` }
At least it should not be broken.... but page reloads in dead cycle for IE11.
If I would made such injection in the code of app-localstorage-document.js
attached: function() { **if (_browser.msie && _browser.version <= 11) { return }** this.listen(window, 'storage', '__onStorage'); this.listen( window.top, 'app-local-storage-changed', '__onAppLocalStorageChanged'); },
It looks like working and all other functionality on the page does work... ofcouse localStorage, in this case, does NOT work... Is there a way to solve it somehow?
Usage of app-localstorage-document.js
At least it should not be broken.... but page reloads in dead cycle for IE11.
If I would made such injection in the code of app-localstorage-document.js
It looks like working and all other functionality on the page does work... ofcouse localStorage, in this case, does NOT work... Is there a way to solve it somehow?
Browsers Affected