From 734700764549b33f19a1219d742e777cc0fc21b4 Mon Sep 17 00:00:00 2001 From: Rick Waldron Date: Mon, 24 Oct 2011 09:27:16 -0400 Subject: [PATCH] Fixes gross indents. --- src/manipulation.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/manipulation.js b/src/manipulation.js index 9a662aca45..add7cda69d 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -459,12 +459,12 @@ jQuery.buildFragment = function( args, nodes, scripts ) { var fragment, cacheable, cacheresults, doc, first = args[ 0 ]; - // nodes may contain either an explicit document object, - // a jQuery collection or context object. - // If nodes[0] contains a valid object to assign to doc - if ( nodes && nodes[0] ) { - doc = nodes[0].ownerDocument || nodes[0]; - } + // nodes may contain either an explicit document object, + // a jQuery collection or context object. + // If nodes[0] contains a valid object to assign to doc + if ( nodes && nodes[0] ) { + doc = nodes[0].ownerDocument || nodes[0]; + } // Ensure that an attr object doesn't incorrectly stand in as a document object // Chrome and Firefox seem to allow this to occur and will throw exception