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 was archived by the owner on Apr 12, 2024. It is now read-only.
The problem is, that AngularJS fails to work if an old jQuery Version is used.
would you please alter the bindJQuery function to do the jQuery check as follows:
// reset to jQuery (only if it features the on function) or default to us.
if (jQuery && typeof(jQuery.fn.on)==='function') {
this way, falling back to jqLite in case of a too-old jQuery version
The text was updated successfully, but these errors were encountered:
is there any way I can "vote" the issue up to get included at least in the next stable release?
it makes it compatible with jQuery <1.7.1 by only changing a single line of code (the line is in my original submission) -- and the line is absolutely readable and understandable.
Sorry I am not familiar with git, so I cant provide a pull request. But I dont think this is really necessary for a one-line-fix
Hi,
AngularJS doesnt work with jQuery <1.7.1 (which is documented at https://docs.angularjs.org/misc/faq)
The problem is, that AngularJS fails to work if an old jQuery Version is used.
would you please alter the bindJQuery function to do the jQuery check as follows:
this way, falling back to jqLite in case of a too-old jQuery version
The text was updated successfully, but these errors were encountered: