We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
please pass window.jQuery into the file closure.
example:
-(function (window, angular, undefined) { +(function (window, angular, $, undefined) { 'use strict';
-})(window, window.angular); +})(window, window.angular, window.jQuery);
The text was updated successfully, but these errors were encountered:
I second this one. Our environment has something else assigned to $ so passing it into the closure would be helpful.
Sorry, something went wrong.
Duplicate of #125
chore(*): version bump 1.0.8
c2d68f1
- Closes #125, #121, #99 - Fix paradox of choice ($ vs jQuery) - Closes #122 - Update jQueryUI depedency in demos and tests - Closes #130 - Restore display value if set, else use block - Closes #128, #36, #30 - Restore zIndex value always - Closes #117, #110 - Fix destroying widgets prior to initialization - Closes #111 - Allow dropping without ngModel similar to dragging
No branches or pull requests
please pass window.jQuery into the file closure.
example:
-(function (window, angular, undefined) {
+(function (window, angular, $, undefined) {
'use strict';
-})(window, window.angular);
+})(window, window.angular, window.jQuery);
The text was updated successfully, but these errors were encountered: