From: Jordan Boesch Date: Mon, 14 Mar 2011 20:17:02 +0000 (-0600) Subject: removing parens X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;h=124acbfbc523614dc5835cfce2c82b867a59986f;p=jquery.git removing parens --- diff --git a/src/manipulation.js b/src/manipulation.js index 613faab..27f81cc 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -261,7 +261,7 @@ jQuery.fn.extend({ } }); } else { - return ( this.length ) ? + return this.length ? this.pushStack( jQuery(jQuery.isFunction(value) ? value() : value), "replaceWith", value ) : this; }