Make WordPress Core

Ticket #29577: 29577.4.diff

File 29577.4.diff, 1.7 KB (added by obenland, 10 years ago)
  • src/wp-content/themes/twentythirteen/js/theme-customizer.js

     
    2121        wp.customize( 'header_textcolor', function( value ) {
    2222                value.bind( function( to ) {
    2323                        if ( 'blank' == to ) {
    24                                 if ( 'remove-header' == _wpCustomizeSettings.values.header_image )
     24                                if ( 'remove-header' == wp.customize.instance( 'header_image' ).get() ) {
    2525                                        $( '.home-link' ).css( 'min-height', '0' );
     26                                }
    2627                                $( '.site-title, .site-description' ).css( {
    2728                                        'clip': 'rect(1px, 1px, 1px, 1px)',
    2829                                        'position': 'absolute'
  • src/wp-content/themes/twentytwelve/js/theme-customizer.js

     
    5353                value.bind( function( to ) {
    5454                        var body = $( 'body' );
    5555
    56                         if ( '' != to )
     56                        if ( '' !== to ) {
    5757                                body.removeClass( 'custom-background-empty custom-background-white' );
    58                         else if ( 'rgb(255, 255, 255)' == body.css( 'background-color' ) )
     58                        } else if ( 'rgb(255, 255, 255)' === body.css( 'background-color' ) ) {
    5959                                body.addClass( 'custom-background-white' );
    60                         else if ( 'rgb(230, 230, 230)' == body.css( 'background-color' ) && '' == _wpCustomizeSettings.values.background_color )
     60                        } else if ( 'rgb(230, 230, 230)' === body.css( 'background-color' ) && '' === wp.customize.instance( 'background_color' ).get() ) {
    6161                                body.addClass( 'custom-background-empty' );
     62                        }
    6263                } );
    6364        } );
    6465} )( jQuery );