We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc2e73a commit 1664ee6Copy full SHA for 1664ee6
app/code/Magento/Ui/view/base/web/js/lib/core/storage/local.js
@@ -11,7 +11,7 @@ define([
11
'use strict';
12
13
var root = 'appData',
14
- localStorage = window.localStorage,
+ localStorage,
15
hasSupport,
16
storage;
17
@@ -22,6 +22,7 @@ define([
22
var key = '_storageSupported';
23
24
try {
25
+ localStorage = window.localStorage;
26
localStorage.setItem(key, 'true');
27
28
if (localStorage.getItem(key) === 'true') {
0 commit comments