X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Fmanipulation.js;h=c537c7095b55339deb389418ec32f41cccd9bef3;hb=f8ef75eb9124ce924be5fb521c783efd5c996e33;hp=ce9b917916b83b276f898c37b6e6f151d7604290;hpb=e06da1724cf05a83e14efa8b854348ac4e4a599a;p=jquery.git diff --git a/src/manipulation.js b/src/manipulation.js index ce9b917..c537c70 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -146,13 +146,13 @@ jQuery.fn.extend({ for ( var i = 0, l = this.length; i < l; i++ ) callback.call( root(this[i], first), this.length > 1 || i > 0 ? fragment.cloneNode(true) : fragment ); - + if ( scripts ) jQuery.each( scripts, evalScript ); } return this; - + function root( elem, cur ) { return table && jQuery.nodeName(elem, "table") && jQuery.nodeName(cur, "tr") ? (elem.getElementsByTagName("tbody")[0] || @@ -306,7 +306,7 @@ jQuery.extend({ // IE completely kills leading whitespace when innerHTML is used if ( !jQuery.support.leadingWhitespace && /^\s/.test( elem ) ) div.insertBefore( context.createTextNode( elem.match(/^\s*/)[0] ), div.firstChild ); - + elem = jQuery.makeArray( div.childNodes ); } @@ -327,7 +327,7 @@ jQuery.extend({ fragment.appendChild( ret[i] ); } } - + return scripts; }