Skip to content

Commit 4fef428

Browse files
committed
MAGETWO-63635: [GitHub] Checkout does not load in Safari (private mode) #7942
1 parent 3cf5d3e commit 4fef428

File tree

1 file changed

+2
-2
lines changed
  • app/code/Magento/Ui/view/base/web/js/lib/core/storage

1 file changed

+2
-2
lines changed

app/code/Magento/Ui/view/base/web/js/lib/core/storage/local.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ define([
8484
* @returns {Object}
8585
*/
8686
function getRoot() {
87-
var data = localStorage.getItem(root);
88-
var result = {};
87+
var data = localStorage.getItem(root),
88+
result = {};
8989

9090
if (!_.isNull(data) && typeof(data) != 'undefined') {
9191
result = JSON.parse(data);

0 commit comments

Comments
 (0)