Changeset 20120 for trunk/wp-includes/class-wp-customize-setting.php
- Timestamp:
- 03/06/2012 02:03:50 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-wp-customize-setting.php
r20028 r20120 341 341 case 'color': 342 342 ?> 343 <label><?php echo esc_html( $this->label ); ?><br/> 344 <span class="hex-prepend">#</span> 345 <input type="text" class="hex-input" value="<?php echo esc_attr( $this->value() ); ?>" <?php $this->name(); ?> /> 346 <a href="#" class="pickcolor hex-color-example"></a> 343 <label> 344 <span><?php echo esc_html( $this->label ); ?></span> 345 <div class="color-picker"> 346 <input class="color-picker-value" type="hidden" value="<?php echo esc_attr( $this->value() ); ?>" <?php $this->name(); ?> /> 347 <a href="#"></a> 348 <div class="color-picker-controls"> 349 <div class="farbtastic-placeholder"></div> 350 <span>#</span> 351 <input type="text" /> 352 </div> 353 </div> 347 354 </label> 348 355 <?php
Note: See TracChangeset
for help on using the changeset viewer.