aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYehuda Katz <wycats@gmail.com>2009-07-17 17:33:44 +0000
committerYehuda Katz <wycats@gmail.com>2009-07-17 17:33:44 +0000
commit1a7f72e7fe96654838074f88c79e021d37c5c30a (patch)
tree39f5f1ea97c9c24aebae91fa9ff97e84325eb924 /src
parent88bd74c732283cf8cd5e778439f0ea23654519d3 (diff)
downloadjquery-1a7f72e7fe96654838074f88c79e021d37c5c30a.tar.gz
jquery-1a7f72e7fe96654838074f88c79e021d37c5c30a.zip
Add test for jQuery(jQueryObj) cloning and simplify new get() code
Diffstat (limited to 'src')
-rw-r--r--src/core.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core.js b/src/core.js
index 267bc104f..a74f0fec9 100644
--- a/src/core.js
+++ b/src/core.js
@@ -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