diff options
author | Rick Waldron <waldron.rick@gmail.com> | 2012-10-16 15:06:51 -0400 |
---|---|---|
committer | Rick Waldron <waldron.rick@gmail.com> | 2012-10-16 15:07:18 -0400 |
commit | aeb036893d35fe036f5d0e119b6ece46eaf3931b (patch) | |
tree | f4cdb9aa13b08dc623af35e18bcf698c4b2aff0c | |
parent | 0ea348bb5b4b8bac7b3bd35bd37396847847d766 (diff) | |
download | jquery-aeb036893d35fe036f5d0e119b6ece46eaf3931b.tar.gz jquery-aeb036893d35fe036f5d0e119b6ece46eaf3931b.zip |
Fixes busted indents. Sorry folks
-rw-r--r-- | src/manipulation.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/manipulation.js b/src/manipulation.js index 5734b33d9..27de3456d 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -264,10 +264,10 @@ jQuery.fn.extend({ // this can help fix replacing a parent with child elements if ( jQuery.isFunction( value ) ) { return this.each(function( index ) { - // HTML argument replaced by "this" element - // 1. There were no supporting tests - // 2. There was no internal code relying on this - // 3. There was no documentation of an html argument + // HTML argument replaced by "this" element + // 1. There were no supporting tests + // 2. There was no internal code relying on this + // 3. There was no documentation of an html argument jQuery( this ).replaceWith( value.call( this, index, this ) ); }); } |