Skip to content
Permalink
Browse files
Speed up iteration in jQuery#domManip if it called with function insi…
…de first argument
  • Loading branch information
markelog committed Dec 23, 2012
1 parent f07e675 commit bc70e0c
Showing 1 changed file with 1 addition and 1 deletion.
@@ -264,7 +264,7 @@ jQuery.fn.extend({
return this.each(function( index ) {
var self = set.eq( index );
if ( isFunction ) {
args[0] = value.call( this, index, table ? self.html() : undefined );
args[ 0 ] = value.call( this, index, table ? self.html() : undefined );
}
self.domManip( args, table, callback );
});

0 comments on commit bc70e0c

Please sign in to comment.