From ec75705f88dd4b44ec133d5167b69e88c175bb24 Mon Sep 17 00:00:00 2001 From: Oleg Date: Thu, 20 Dec 2012 04:06:44 +0400 Subject: [PATCH] Remove needless expression --- src/manipulation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]; -- 2.39.5