From a8b38b0e6b66edab2993e7a517ac37968dc1de92 Mon Sep 17 00:00:00 2001 From: Oleg Date: Thu, 20 Dec 2012 03:17:05 +0400 Subject: [PATCH] Remove couple of spaces --- src/manipulation.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ); } -- 2.39.5