diff --git a/js/theme-customizer.js b/js/theme-customizer.js index cc27956d2..c1018b05c 100644 --- a/js/theme-customizer.js +++ b/js/theme-customizer.js @@ -21,7 +21,7 @@ // Hook into background color change and adjust body class value as needed. wp.customize( 'background_color', function( value ) { value.bind( function( to ) { - if ( '#ffffff' == to || '#fff' == to || '' == to ) + if ( '#ffffff' == to || '#fff' == to ) $( 'body' ).addClass( 'custom-background-white' ); else if ( '' == to ) $( 'body' ).addClass( 'custom-background-empty' );