Follow through with 'customizer' naming convention.

This commit is contained in:
obenland 2012-11-30 09:26:37 -08:00
parent c7d3e37fc6
commit 5bfc37093b
2 changed files with 1 additions and 1 deletions

View File

@ -25,6 +25,6 @@ add_action( 'customize_register', '_s_customize_register' );
* @since _s 1.2 * @since _s 1.2
*/ */
function _s_customize_preview_js() { function _s_customize_preview_js() {
wp_enqueue_script( '_s-customizer', get_template_directory_uri() . '/js/theme-customizer.js', array( 'customize-preview' ), '20120827', true ); wp_enqueue_script( '_s_customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), '20120827', true );
} }
add_action( 'customize_preview_init', '_s_customize_preview_js' ); add_action( 'customize_preview_init', '_s_customize_preview_js' );