- Timestamp:
- 04/18/2017 12:30:07 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/customize/class-wp-customize-color-control.php
r39345 r40471 93 93 public function content_template() { 94 94 ?> 95 <# var defaultValue = ' ',95 <# var defaultValue = '#RRGGBB', defaultValueAttr = '', 96 96 isHueSlider = data.mode === 'hue'; 97 97 … … 102 102 defaultValue = data.defaultValue; 103 103 } 104 defaultValue = ' data-default-color=' + defaultValue; // Quotes added automatically.104 defaultValueAttr = ' data-default-color=' + defaultValue; // Quotes added automatically. 105 105 } #> 106 106 <label> … … 115 115 <input class="color-picker-hue" type="text" data-type="hue" /> 116 116 <# } 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 }} /> 118 118 <# } #> 119 119 </div>
Note: See TracChangeset
for help on using the changeset viewer.