Replace underscore with hyphen (#1163)

Fixes #1160
This commit is contained in:
Siddharth Thevaril 2017-07-08 04:41:38 +05:30 committed by David A. Kennedy
parent 251896a973
commit d1f1f30983
1 changed files with 1 additions and 1 deletions

View File

@ -50,6 +50,6 @@ function _s_customize_partial_blogdescription() {
* Binds JS handlers to make Theme Customizer preview reload changes asynchronously.
*/
function _s_customize_preview_js() {
wp_enqueue_script( '_s_customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), '20151215', true );
wp_enqueue_script( '_s-customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), '20151215', true );
}
add_action( 'customize_preview_init', '_s_customize_preview_js' );