Make WordPress Core

Changeset 30271


Ignore:
Timestamp:
11/07/2014 05:19:55 PM (10 years ago)
Author:
iandstewart
Message:

Twenty Fifteen: improve naming and documentation of customizer js files to match core filenaming conventions.

Props celloexpressions, fixes #30160.

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  
    656656 */
    657657function twentyfifteen_customize_preview_js() {
    658     wp_enqueue_script( 'twentyfifteen-customizer', 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 );
    659659}
    660660add_action( 'customize_preview_init', 'twentyfifteen_customize_preview_js' );
  • trunk/src/wp-content/themes/twentyfifteen/js/color-scheme-control.js

    r30230 r30271  
    11/* global colorScheme */
    22/**
    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.
    64 */
    75
Note: See TracChangeset for help on using the changeset viewer.