Remove couple of spaces

This commit is contained in:
Oleg 2012-12-20 03:17:05 +04:00
parent 8958f7cd9d
commit a8b38b0e6b

View 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 );
}