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
{{ message }}
This repository was archived by the owner on Aug 4, 2021. It is now read-only.
A lot of UMD modules check for define && define.amd before module && module.exports, which causes problems if a module is being loaded on a page where define is, well, defined.
Easy way to fix this problem (tip 'o the hat to @wpf500) – rewrite any define references (that aren't in scope) to undefined.
A lot of UMD modules check for
define && define.amdbeforemodule && module.exports, which causes problems if a module is being loaded on a page wheredefineis, well, defined.Easy way to fix this problem (tip 'o the hat to @wpf500) – rewrite any
definereferences (that aren't in scope) toundefined.