Make WordPress Core

Ticket #39096: 39096.4.diff

File 39096.4.diff, 1.4 KB (added by westonruter, 8 years ago)
  • src/wp-includes/customize/class-wp-customize-color-control.php

    diff --git src/wp-includes/customize/class-wp-customize-color-control.php src/wp-includes/customize/class-wp-customize-color-control.php
    index 7f6a9b5a84..0d2912a328 100644
    class WP_Customize_Color_Control extends WP_Customize_Control { 
    9292         */
    9393        public function content_template() {
    9494                ?>
    95                 <# var defaultValue = '',
     95                <# var defaultValue = '', defaultValueAttr = '',
    9696                        isHueSlider = data.mode === 'hue';
    9797
    9898                if ( data.defaultValue && ! isHueSlider ) {
    class WP_Customize_Color_Control extends WP_Customize_Control { 
    101101                        } else {
    102102                                defaultValue = data.defaultValue;
    103103                        }
    104                         defaultValue = ' data-default-color=' + defaultValue; // Quotes added automatically.
     104                        defaultValueAttr = ' data-default-color=' + defaultValue; // Quotes added automatically.
    105105                } #>
    106106                <label>
    107107                        <# if ( data.label ) { #>
    class WP_Customize_Color_Control extends WP_Customize_Control { 
    114114                                <# if ( isHueSlider ) { #>
    115115                                        <input class="color-picker-hue" type="text" data-type="hue" />
    116116                                <# } else { #>
    117                                         <input class="color-picker-hex" type="text" maxlength="7" placeholder="<?php esc_attr_e( 'Hex Value' ); ?>" {{ defaultValue }} />
     117                                        <input class="color-picker-hex" type="text" maxlength="7" placeholder="{{ defaultValue }}" {{ defaultValueAttr }} />
    118118                                <# } #>
    119119                        </div>
    120120                </label>