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
Quay currently supports loading as an AMD module, but because the code is all in top-level script scope, it's still leaking a global Quay object. You can see this by loading it through requireJS then checking window.Quay.
If you're serious about supporting module loading, you might want to looking into wrapping the whole thing in an IIFE, then doing the define sniff inside that -- for example, following the UMD guidelines
The text was updated successfully, but these errors were encountered:
Quay currently supports loading as an AMD module, but because the code is all in top-level script scope, it's still leaking a global Quay object. You can see this by loading it through requireJS then checking
window.Quay
.If you're serious about supporting module loading, you might want to looking into wrapping the whole thing in an IIFE, then doing the
define
sniff inside that -- for example, following the UMD guidelinesThe text was updated successfully, but these errors were encountered: