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
When wrapping polymaps in a closure - to make it available in Yabble (CommonJS module loader) -, org.polymaps is not available in the global namespace. Defining it as a local variable is not enough.
It should be done like that:
if (!window.org)window.org={}
if(!org.polymaps)org.polymaps={}
If you agree, I will send a patch.
The text was updated successfully, but these errors were encountered:
When wrapping polymaps in a closure - to make it available in Yabble (CommonJS module loader) -, org.polymaps is not available in the global namespace. Defining it as a local variable is not enough.
It should be done like that:
if (!window.org)window.org={}
if(!org.polymaps)org.polymaps={}
If you agree, I will send a patch.
The text was updated successfully, but these errors were encountered: