-
Notifications
You must be signed in to change notification settings - Fork 27.4k
only use window.jQuery if it supports required jQuery.fn.on #6376
Conversation
Thanks for the PR! Please check the items below to help us merge this faster. See the contributing docs for more information.
If you need to make changes to your pull request, you can update the commit with Thanks again for your help! |
I'm sorry, but I wasn't able to verify your Contributor License Agreement (CLA) signature. CLA signature is required for any code contributions to AngularJS. Please sign our CLA and ensure that the CLA signature email address and the email address in this PR's commits match. If you signed the CLA as a corporation, please let us know the company's name. Thanks a bunch! PS: If you signed the CLA in the past then most likely the email addresses don't match. Please sign the CLA again or update the email address in the commit of this PR. |
There should be a CLA for this commit now |
CLA signature verified! Thank you! Someone from the team will now triage your PR and it will be processed based on the determined priority (doc updates and fixes with tests are prioritized over other changes). |
+1 Another case here of wanting to use angular in an existing website with an old jquery already present - this seems like the safest option. |
+1 I'm trying to drop an angular app into a large site that uses old jQuery. This change is simple and solves our problem. |
We'll likely switch to jQuery 2.x soon in Angular 1.3; see #7311 for progress in that regard. |
(though API is compatible so this PR should be OK) |
It would be nice if this patch could be applied to the 1.2.x branch at least. If there's interest in applying it there I can submit a PR against 1.2.x. |
// reset to jQuery or default to us. | ||
if (jQuery) { | ||
// use jQuery if it exists with proper functionality, otherwise default to us. | ||
// angular 1.2+ requires jQuery 1.7.1+ for on()/off() support. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
angular
-> Angular
@tomdcc No need for a separate PR, this will do just fine for 1.2 as well. |
@RSNApp The commit message should start with
|
@RSNApp Also, if you could rebase to the latest master, that would be great. (EDIT: corrected the nick) |
I didn't submit this PR, so I don't think I can rebase it - would have to submit a new one I think, or submit a PR to the @RSNApp branch and have him/her accept it. Let me know if you want a new one. |
Make Angular not bind to jQuery versions older than 1.7 since older versions of jQuery do not support necessary on()/off() methods.
I've rebased to master and updated the commit message. |
didnt find that one, when I opened #7300 Thanks! |
Thanks @RSNApp! Landed for both 1.3 & 1.2. |
This is a safe and simple fix to the legacy jQuery situation referenced in #2163 until the API in issue #608 is refined and implemented.