git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ca8a9e8
)
Removed the use of this.length++ as it makes it hard to use the init method directly...
author
John Resig
<jeresig@gmail.com>
Wed, 11 Nov 2009 18:42:50 +0000
(13:42 -0500)
committer
John Resig
<jeresig@gmail.com>
Wed, 11 Nov 2009 18:42:50 +0000
(13:42 -0500)
src/core.js
patch
|
blob
|
history
diff --git
a/src/core.js
b/src/core.js
index
addff6b
..
793f122
100644
(file)
--- a/
src/core.js
+++ b/
src/core.js
@@
-56,7
+56,7
@@
jQuery.fn = jQuery.prototype = {
// Handle $(DOMElement)
if ( selector.nodeType ) {
this.context = this[0] = selector;
- this.length++;
+ this.length = 1;
return this;
}
@@
-96,7
+96,7
@@
jQuery.fn = jQuery.prototype = {
}
// Otherwise, we inject the element directly into the jQuery object
- this.length++;
+ this.length = 1;
this[0] = elem;
}