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:
145f2f0
)
No need to use .call() anymore since we switched from .apply() for appendTo, etc...
author
jeresig
<jeresig@gmail.com>
Fri, 5 Mar 2010 14:59:58 +0000
(09:59 -0500)
committer
jeresig
<jeresig@gmail.com>
Fri, 5 Mar 2010 14:59:58 +0000
(09:59 -0500)
src/manipulation.js
patch
|
blob
|
history
diff --git
a/src/manipulation.js
b/src/manipulation.js
index
13f5ec6
..
270c7bc
100644
(file)
--- a/
src/manipulation.js
+++ b/
src/manipulation.js
@@
-442,7
+442,7
@@
jQuery.each({
} else {
for ( var i = 0, l = insert.length; i < l; i++ ) {
var elems = (i > 0 ? this.clone(true) : this).get();
- jQuery.fn[ original ].call( jQuery(insert[i]), elems );
+ jQuery( insert[i] )[ original ]( elems );
ret = ret.concat( elems );
}