Don't concatenate. see #19910

git-svn-id: https://develop.svn.wordpress.org/trunk@20845 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2012-05-22 20:34:45 +00:00
parent 4500216283
commit 8ff3ad7903
1 changed files with 1 additions and 1 deletions

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>