Changes between Initial Version and Version 1 of Ticket #37964
- Timestamp:
- 09/07/2016 06:35:27 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #37964
- Property Keywords has-patch added
-
Ticket #37964 – Description
initial v1 17 17 18 18 {{{#!js 19 wp.customize.create( 'product_color', 'product_color', settingArgs.value, {} );19 wp.customize.create( 'product_color', 'product_color', '#000000', {} ); 20 20 control = new wp.customize.Control( 'product_color', { 21 21 type: 'color', … … 29 29 30 30 The goal is to allow controls to be encapsulated and to be able to use them in standalone contexts or embedded inside of other controls. 31 32 Related: 33 * #30738 34 * #37275 35 * #29071