Changeset 30271
- Timestamp:
- 11/07/2014 05:19:55 PM (10 years ago)
- Location:
- trunk/src/wp-content/themes/twentyfifteen
- Files:
-
- 1 added
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyfifteen/inc/customizer.php
r30233 r30271 656 656 */ 657 657 function twentyfifteen_customize_preview_js() { 658 wp_enqueue_script( 'twentyfifteen-customize r', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), '20141005', true );658 wp_enqueue_script( 'twentyfifteen-customize-preview', get_template_directory_uri() . '/js/customize-preview.js', array( 'customize-preview' ), '20141029', true ); 659 659 } 660 660 add_action( 'customize_preview_init', 'twentyfifteen_customize_preview_js' ); -
trunk/src/wp-content/themes/twentyfifteen/js/color-scheme-control.js
r30230 r30271 1 1 /* global colorScheme */ 2 2 /** 3 * Customizer enhancements for a better user experience. 4 * 5 * Adds listener to Color Scheme control to update other color controls with new values/defaults 3 * Add a listener to the Color Scheme control to update other color controls to new values/defaults. 6 4 */ 7 5
Note: See TracChangeset
for help on using the changeset viewer.