diff options
author | Jordan Boesch <jordan@boedesign.com> | 2011-03-14 14:17:02 -0600 |
---|---|---|
committer | Jordan Boesch <jordan@boedesign.com> | 2011-03-14 14:17:02 -0600 |
commit | 124acbfbc523614dc5835cfce2c82b867a59986f (patch) | |
tree | 4f1782b73f80ba603e8de324a120375f1507ce7e /src/manipulation.js | |
parent | dd100bf5ac56d5d44afe45d73fe1824bd0135872 (diff) | |
download | jquery-124acbfbc523614dc5835cfce2c82b867a59986f.tar.gz jquery-124acbfbc523614dc5835cfce2c82b867a59986f.zip |
removing parens
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 613faabb9..27f81cc24 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; } |