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
Currently it is impossible to load this plugin when building sources using, e.g. gulp, because import 'modaal' fails with Uncaught ReferenceError: jQuery is undefined, even if you have code like this:
import $ from 'jquery'; <-- This does not define window.jQuery when building code in Node.
import 'modaal'; <-- This subsequently does not have access to a global jQuery object.
I've found a pretty nice workaround for this, but it requires changes in your source code, there's nothing I can do in my code to make it work: https://gist.github.com/monkeymonk/c08cb040431f89f99928132ca221d647
This can obviously be merged into a single JS file, the gist is simply a flexible solution.
The text was updated successfully, but these errors were encountered:
Currently it is impossible to load this plugin when building sources using, e.g. gulp, because
import 'modaal'
fails withUncaught ReferenceError: jQuery is undefined
, even if you have code like this:I've found a pretty nice workaround for this, but it requires changes in your source code, there's nothing I can do in my code to make it work: https://gist.github.com/monkeymonk/c08cb040431f89f99928132ca221d647
This can obviously be merged into a single JS file, the gist is simply a flexible solution.
The text was updated successfully, but these errors were encountered: