From: Oleg Date: Thu, 20 Dec 2012 00:06:44 +0000 (+0400) Subject: Remove needless expression X-Git-Tag: 2.0.0b1~59^2~26 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=ec75705f88dd4b44ec133d5167b69e88c175bb24;p=jquery.git Remove needless expression --- diff --git a/src/manipulation.js b/src/manipulation.js index c8d673d56..7bccca901 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -443,7 +443,7 @@ jQuery.extend({ // Deserialize a standard representation tag = ( rtagName.exec( elem ) || ["", ""] )[ 1 ].toLowerCase(); wrap = wrapMap[ tag ] || wrapMap._default; - tmp.innerHTML = wrap[ 1 ] + elem.replace( rxhtmlTag, "<$1>" ) + ( wrap[ 2 ] || "" ); + tmp.innerHTML = wrap[ 1 ] + elem.replace( rxhtmlTag, "<$1>" ); // Descend through wrappers to the right content j = wrap[0];