-
Notifications
You must be signed in to change notification settings - Fork 160
New issue
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
Breaks in jQuery.noConflict(true) Scenario #67
Comments
Sounds familiar ;) I guess we'll have to go through it and just change everything to |
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. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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: