From: Oleg Date: Wed, 19 Dec 2012 23:17:05 +0000 (+0400) Subject: Remove couple of spaces X-Git-Tag: 2.0.0b1~59^2~30 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=a8b38b0e6b66edab2993e7a517ac37968dc1de92;p=jquery.git Remove couple of spaces --- diff --git a/src/manipulation.js b/src/manipulation.js index 269b1d043..633a68b49 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -115,7 +115,7 @@ jQuery.fn.extend({ }, before: function() { - return this.domManip( arguments, false, function( elem ) { + return this.domManip(arguments, false, function( elem ) { if ( this.parentNode ) { this.parentNode.insertBefore( elem, this ); } @@ -123,7 +123,7 @@ jQuery.fn.extend({ }, after: function() { - return this.domManip( arguments, false, function( elem ) { + return this.domManip(arguments, false, function( elem ) { if ( this.parentNode ) { this.parentNode.insertBefore( elem, this.nextSibling ); }