diff options
author | jeresig <jeresig@gmail.com> | 2010-03-05 09:59:58 -0500 |
---|---|---|
committer | jeresig <jeresig@gmail.com> | 2010-03-05 09:59:58 -0500 |
commit | 0a307b332e896b6b480952abb5d3bf03819893c8 (patch) | |
tree | eefb1b033213e854eb4096ba99d36b4a962931c6 /src/manipulation.js | |
parent | 145f2f045901af5f03f4bdb8a2192027b56f8b30 (diff) | |
download | jquery-0a307b332e896b6b480952abb5d3bf03819893c8.tar.gz jquery-0a307b332e896b6b480952abb5d3bf03819893c8.zip |
No need to use .call() anymore since we switched from .apply() for appendTo, etc. Thanks to Robert in 2c08004f6d4e7f11a875190e132d204a25cb9418 for the heads-up.
Diffstat (limited to 'src/manipulation.js')
-rw-r--r-- | src/manipulation.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/manipulation.js b/src/manipulation.js index 13f5ec688..270c7bcf7 100644 --- 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 ); } |