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 has been 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.
The text was updated successfully, but these errors were encountered:
A lot of UMD modules check for
define && define.amd
beforemodule && module.exports
, which causes problems if a module is being loaded on a page wheredefine
is, well, defined.Easy way to fix this problem (tip 'o the hat to @wpf500) – rewrite any
define
references (that aren't in scope) toundefined
.The text was updated successfully, but these errors were encountered: