From: Marian Sollmann Date: Mon, 28 Oct 2013 14:31:58 +0000 (+0100) Subject: Fix #14190: Remove unnecessary assignment in .closest. Close gh-1411. X-Git-Tag: 2.1.0-beta2~36 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=ff365d305fc22f40f4df9c4a6c7b1ca6c3c9800d;p=jquery.git Fix #14190: Remove unnecessary assignment in .closest. Close gh-1411. (cherry picked from commit 346b031af9e3b315ef351a9cc7fee56f930cf346) Conflicts: src/traversing.js --- diff --git a/src/traversing.js b/src/traversing.js index 4e55c8257..e3fc5cfa2 100644 --- a/src/traversing.js +++ b/src/traversing.js @@ -65,7 +65,7 @@ jQuery.fn.extend({ i = 0, l = this.length, matched = [], - pos = ( rneedsContext.test( selectors ) || typeof selectors !== "string" ) ? + pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ? jQuery( selectors, context || this.context ) : 0; @@ -79,7 +79,7 @@ jQuery.fn.extend({ cur.nodeType === 1 && jQuery.find.matchesSelector(cur, selectors)) ) { - cur = matched.push( cur ); + matched.push( cur ); break; } }