Merge pull request #888 from jrfnl/feature/slim-down-travis

Slim down the travis script - remove superfluous checks.

Fixes #881.
This commit is contained in:
Konstantin Obenland 2016-02-11 09:42:09 -10:00
commit 6ae11474be
9 changed files with 85 additions and 92 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' ), '20130508', 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' );