Make WordPress Core

Changeset 22168


Ignore:
Timestamp:
10/10/2012 08:47:07 PM (14 years ago)
Author:
lancewillett
Message:

Twenty Twelve: remove a duplicate/misplaced condition in theme-customizer.js, props DrewAPicture. Closes #21685.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-content/themes/twentytwelve/js/theme-customizer.js

    r22059 r22168  
    2222    wp.customize( 'background_color', function( value ) {
    2323        value.bind( function( to ) {
    24             if ( '#ffffff' == to || '#fff' == to || '' == to )
     24            if ( '#ffffff' == to || '#fff' == to )
    2525                $( 'body' ).addClass( 'custom-background-white' );
    2626            else if ( '' == to )
Note: See TracChangeset for help on using the changeset viewer.