]> source.dussan.org Git - jquery.git/commitdiff
Remove couple of spaces
authorOleg <markelog@gmail.com>
Wed, 19 Dec 2012 23:17:05 +0000 (03:17 +0400)
committerOleg <markelog@gmail.com>
Sun, 23 Dec 2012 23:04:18 +0000 (03:04 +0400)
src/manipulation.js

index 269b1d04348946160ced30739fe9499d1edf880a..633a68b492ab7f6c3e842e83db3cbaf56462770e 100644 (file)
@@ -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 );
                        }