Don't concatenate. see #19910

git-svn-id: http://core.svn.wordpress.org/trunk@20845 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2012-05-22 20:34:45 +00:00
parent b66fb16fe5
commit 4685f9ea04

View File

@ -102,7 +102,7 @@ $admin_body_class .= ' no-customize-support';
// This prevents a flash of unstyled content.
if ( wp_script_is( 'customize-loader', 'queue' ) ) : ?>
if ( window.postMessage )
document.body.className += document.body.className.replace('no-customize-support','customize-support');
document.body.className = document.body.className.replace('no-customize-support','customize-support');
<?php endif; ?>
</script>