Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While the various modules are surrounded by...
define(['jquery', ...], function( $, ... ) {
... many of them make references to the global jQuery variable, which does not exist if jQuery.noConflict(true); has been called.
jQuery
jQuery.noConflict(true);
In general AMD modules should avoid accessing variables in the global scope.
The text was updated successfully, but these errors were encountered:
Sounds familiar ;) I guess we'll have to go through it and just change everything to $.
$
Sorry, something went wrong.
At least it should be an easy fix. :-)
I assume this will be in the next release. Do you know when that will be?
I wanted to get out a patch version soon. A pull request would greatly speed up the process.
69f7216
Successfully merging a pull request may close this issue.
While the various modules are surrounded by...
... many of them make references to the global
jQuery
variable, which does not exist ifjQuery.noConflict(true);
has been called.In general AMD modules should avoid accessing variables in the global scope.
The text was updated successfully, but these errors were encountered: