Add test for jQuery(jQueryObj) cloning and simplify new get() code
This commit is contained in:
parent
88bd74c732
commit
1a7f72e7fe
2 changed files with 6 additions and 4 deletions
|
@ -43,9 +43,8 @@ jQuery.fn = jQuery.prototype = {
|
|||
|
||||
// Handle $(DOMElement)
|
||||
if ( selector.nodeType ) {
|
||||
this[0] = selector;
|
||||
this.context = this[0] = selector;
|
||||
this.length++;
|
||||
this.context = selector;
|
||||
return this;
|
||||
}
|
||||
|
||||
|
@ -132,7 +131,7 @@ jQuery.fn = jQuery.prototype = {
|
|||
this.toArray() :
|
||||
|
||||
// Return just the object
|
||||
( num < 0 ? this.toArray.call(this, num)[0] : this[ num ] );
|
||||
( num < 0 ? this.toArray(num)[ 0 ] : this[ num ] );
|
||||
},
|
||||
|
||||
// Take an array of elements and push it onto the stack
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue