mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Follow-up for .selector property removal
This commit is contained in:
parent
240b141a22
commit
f651bf8893
@ -231,8 +231,7 @@ jQuery.fn = jQuery.prototype = {
|
||||
},
|
||||
|
||||
slice: function() {
|
||||
return this.pushStack( core_slice.apply( this, arguments ),
|
||||
"slice", core_slice.call(arguments).join(",") );
|
||||
return this.pushStack( core_slice.apply( this, arguments ) );
|
||||
},
|
||||
|
||||
first: function() {
|
||||
|
@ -31,9 +31,8 @@ jQuery.fn.extend({
|
||||
}
|
||||
|
||||
// Needed because $( selector, context ) becomes $( context ).find( selector )
|
||||
ret = this.pushStack( jQuery.unique( ret ) );
|
||||
ret.selector = ( this.selector ? this.selector + " " : "" ) + selector;
|
||||
return ret;
|
||||
return this.pushStack( jQuery.unique( ret ) );
|
||||
},
|
||||
|
||||
has: function( target ) {
|
||||
@ -90,9 +89,7 @@ jQuery.fn.extend({
|
||||
}
|
||||
}
|
||||
|
||||
ret = ret.length > 1 ? jQuery.unique( ret ) : ret;
|
||||
|
||||
return this.pushStack( ret );
|
||||
return this.pushStack( ret.length > 1 ? jQuery.unique( ret ) : ret );
|
||||
},
|
||||
|
||||
// Determine the position of an element within
|
||||
|
Loading…
Reference in New Issue
Block a user