From 70078355b749b01e3da5e1f61bba41705726222c Mon Sep 17 00:00:00 2001 From: Neil Jenkins Date: Thu, 8 Mar 2012 15:19:43 +1100 Subject: [PATCH] Whitespace fix. --- source/Node.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Node.js b/source/Node.js index ca1ed93..6a0c829 100644 --- a/source/Node.js +++ b/source/Node.js @@ -35,7 +35,7 @@ var leafNodeNames = { INPUT: 1 }; -var swap = function( node, node2 ) { +var swap = function ( node, node2 ) { var parent = node2.parentNode; if ( parent ) { parent.replaceChild( node, node2 ); @@ -137,7 +137,7 @@ implement( Element, { getLength: function () { return this.childNodes.length; }, - getPath: function() { + getPath: function () { var tag = this.nodeName; if ( tag === 'BODY' ) { return tag;