Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
No need to use .call() anymore since we switched from .apply() for ap…
…pendTo, etc. Thanks to Robert in 2c08004 for the heads-up.
  • Loading branch information
jeresig committed Mar 5, 2010
1 parent 145f2f0 commit 0a307b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/manipulation.js
Expand Up @@ -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 );
}

Expand Down

0 comments on commit 0a307b3

Please sign in to comment.