From: Richard Gibson Date: Wed, 22 Nov 2017 19:43:44 +0000 (-0500) Subject: Manipulation: Reduce size by eliminating single-use variable X-Git-Tag: 3.3.0~34 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=0aa832afec04215ed5e14b1cc5fc287ad7939792;p=jquery.git Manipulation: Reduce size by eliminating single-use variable Closes gh-3851 --- diff --git a/src/manipulation.js b/src/manipulation.js index 2db1cfe3f..c30100ff8 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -45,7 +45,6 @@ var // checked="checked" or checked rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i, - rscriptTypeMasked = /^true\/(.*)/, rcleanScript = /^\s*\s*$/g; // Prefer a tbody over its parent table for containing new rows @@ -65,10 +64,8 @@ function disableScript( elem ) { return elem; } function restoreScript( elem ) { - var match = rscriptTypeMasked.exec( elem.type ); - - if ( match ) { - elem.type = match[ 1 ]; + if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { + elem.type = elem.type.slice( 5 ); } else { elem.removeAttribute( "type" ); }