Make WordPress Core

Changeset 20121


Ignore:
Timestamp:
03/06/2012 02:14:27 AM (13 years ago)
Author:
koopersmith
Message:

Theme Customizer: Ensure color pickers initialize to the correct color. see #19910.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/js/customize-controls.dev.js

    r20120 r20121  
    173173                toggle = parent.siblings('a'),
    174174                value  = api( parent.siblings('input').prop('name').replace( api.settings.prefix, '' ) ),
    175                 farb;
     175                farb, update;
    176176
    177177            value.validate = validateColor;
     
    183183            });
    184184
    185             value.bind( function( color ) {
     185            update = function( color ) {
    186186                color = '#' + color;
    187187                toggle.css( 'background', color );
    188188                farb.setColor( color );
    189             });
     189            };
     190
     191            value.bind( update );
     192            update( value() );
    190193        });
    191194
Note: See TracChangeset for help on using the changeset viewer.