You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using var window gives a redeclaration error in IE9 (while, funnily enough, works OK in IE7):
Also, I'm not sure that declaration has any use, as the only line where window is used is already managed with (window||{}).
(part of the same might apply to var define and var module too, but they're not giving direct problems in IE9)
The text was updated successfully, but these errors were encountered:
The var window was put there in 8ff6353 to fix #11. It's so when it's being webpacked/browserified the window is declared locally (since in that case the whole file is wrapped in a function) and doesn't leak the renderjson export to the global window.
Using
var window
gives a redeclaration error in IE9 (while, funnily enough, works OK in IE7):Also, I'm not sure that declaration has any use, as the only line where
window
is used is already managed with(window||{})
.(part of the same might apply to
var define
andvar module
too, but they're not giving direct problems in IE9)The text was updated successfully, but these errors were encountered: