Backing out commit #6507 - causes too many problems.
This commit is contained in:
parent
b7a3b220a8
commit
61b18c866c
2 changed files with 3 additions and 10 deletions
|
@ -53,12 +53,11 @@ jQuery.fn.extend({
|
|||
|
||||
closest: function( selector ) {
|
||||
var pos = jQuery.expr.match.POS.test( selector ) ? jQuery(selector) : null,
|
||||
closer = 0,
|
||||
context = this.context;
|
||||
closer = 0;
|
||||
|
||||
return this.map(function(){
|
||||
var cur = this;
|
||||
while ( cur && cur.ownerDocument && cur !== context ) {
|
||||
while ( cur && cur.ownerDocument ) {
|
||||
if ( pos ? pos.index(cur) > -1 : jQuery(cur).is(selector) ) {
|
||||
jQuery.data(cur, "closest", closer);
|
||||
return cur;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue