Safari: use self instead of window, just in case

This commit is contained in:
Chris 2015-03-16 22:51:29 -06:00
parent 6a85e5dc3b
commit aaf8a9835c
1 changed files with 1 additions and 1 deletions

View File

@ -143,6 +143,6 @@ Number.prototype.toLocaleString = function() {
// This storage is optional, but it is nice to have, for a more polished user
// experience.
vAPI.localStorage = window.localStorage;
vAPI.localStorage = self.localStorage;
})();