From 576607de0f00797f503473299d46155b06dba016 Mon Sep 17 00:00:00 2001 From: "Rick Waldron waldron.rick@gmail.com" Date: Sun, 15 Apr 2012 21:59:25 -0400 Subject: [PATCH] Fixes mangled indents. Signed-off-by: Rick Waldron waldron.rick@gmail.com --- src/manipulation.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/manipulation.js b/src/manipulation.js index e7de7a621..60f4798b5 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -499,16 +499,17 @@ jQuery.buildFragment = function( args, context, scripts ) { cacheable = true; fragment = jQuery.fragments[ first ]; cachehit = fragment !== undefined; - } + } if ( !fragment ) { fragment = context.createDocumentFragment(); jQuery.clean( args, context, fragment, scripts ); - if ( cacheable ) { - // Update the cache, but only store false - // unless this is a second parsing of the same content + + // Update the cache, but only store false + // unless this is a second parsing of the same content + if ( cacheable ) { jQuery.fragments[ first ] = cachehit && fragment; - } + } } return { fragment: fragment, cacheable: cacheable }; @@ -531,7 +532,6 @@ jQuery.each({ if ( parent && parent.nodeType === 11 && parent.childNodes.length === 1 && insert.length === 1 ) { insert[ original ]( this[0] ); return this; - } else { for ( var i = 0, l = insert.length; i < l; i++ ) { var elems = ( i > 0 ? this.clone(true) : this ).get(); -- 2.39.5