Skip to content
Permalink
Browse files
Remove couple of spaces
  • Loading branch information
markelog committed Dec 23, 2012
1 parent 8958f7c commit a8b38b0
Showing 1 changed file with 2 additions and 2 deletions.
@@ -115,15 +115,15 @@ 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 );
}
});
},

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

0 comments on commit a8b38b0

Please sign in to comment.