From 5bfc37093bf41409f90a2987d537b3030b1ddfeb Mon Sep 17 00:00:00 2001 From: obenland Date: Fri, 30 Nov 2012 09:26:37 -0800 Subject: [PATCH] Follow through with 'customizer' naming convention. --- inc/customizer.php | 2 +- js/{theme-customizer.js => customizer.js} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename js/{theme-customizer.js => customizer.js} (100%) diff --git a/inc/customizer.php b/inc/customizer.php index e7876799..b3556c0b 100644 --- a/inc/customizer.php +++ b/inc/customizer.php @@ -25,6 +25,6 @@ add_action( 'customize_register', '_s_customize_register' ); * @since _s 1.2 */ 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' ); \ No newline at end of file diff --git a/js/theme-customizer.js b/js/customizer.js similarity index 100% rename from js/theme-customizer.js rename to js/customizer.js