6d9357444c
git-svn-id: https://develop.svn.wordpress.org/trunk@21343 602fd350-edb4-49c9-b593-d223f7449a82
14 lines
490 B
JavaScript
14 lines
490 B
JavaScript
( function( $ ){
|
|
// Hook into background color change and adjust body class value as needed.
|
|
wp.customize( 'background_color', function( value ) {
|
|
var body = $( 'body' );
|
|
value.bind( function( to ) {
|
|
if ( '#ffffff' == to || '#fff' == to || '' == to )
|
|
body.addClass( 'custom-background-white' );
|
|
else if ( '' == to )
|
|
body.addClass( 'custom-background-empty' );
|
|
else
|
|
body.removeClass( 'custom-background-empty custom-background-white' );
|
|
} );
|
|
} );
|
|
} )( jQuery ); |