Skip to content

Commit

Permalink
Fix typo in sessionStorage polyfill
Browse files Browse the repository at this point in the history
  • Loading branch information
mszydlo authored Oct 4, 2017
1 parent 9c14af7 commit c1c5796
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
};

window.localStorage.__proto__ = window.localStorage = new Storage('local');
window.sessionStorage.__proto__ = window.sessionStorag = new Storage('session');
window.sessionStorage.__proto__ = window.sessionStorage = new Storage('session');
})();
}
</script>

0 comments on commit c1c5796

Please sign in to comment.