Fixes the broken display header text option in the Customizer.

This commit is contained in:
Takashi Irie 2013-04-22 16:47:14 +01:00
parent 790b765ac2
commit 8ceefdcdeb
3 changed files with 16 additions and 10 deletions

View file

@ -21,6 +21,6 @@ add_action( 'customize_register', '_s_customize_register' );
* 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' ), '20130304', true );
wp_enqueue_script( '_s_customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), '20130422', true );
}
add_action( 'customize_preview_init', '_s_customize_preview_js' );