From eb4e038b2ef59bca37e1bbbdc5c6a6525a516c54 Mon Sep 17 00:00:00 2001 From: Devon Crosby Date: Mon, 28 Mar 2016 21:18:55 -0230 Subject: [PATCH] Verion number bump --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 44b86cf..45b498d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -wordpress.plupload.helper v0.1b +wordpress.plupload.helper v0.2b ===== Summary @@ -38,8 +38,8 @@ The other method is to register and enqueue the scripts. add_action('wp_print_scripts', 'enqueue_plupload_helper'); add_action('admin_print_scripts', 'enqueue_plupload_helper'); function register_plupload_helper() { - wp_register_style('plupload-helper', get_stylesheet_directory_uri() . '/bower_components/wordpress.plupload.helper/css/wordpress.plupload.helper.css', false, '0.1b', 'screen'); - wp_register_script('plupload-helper', get_stylesheet_directory_uri() . '/bower_components/wordpress.plupload.helper/js/min/wordpress.plupload.helper-min.js', array('jquery','plupload-all'), '0.1b', true); + wp_register_style('plupload-helper', get_stylesheet_directory_uri() . '/bower_components/wordpress.plupload.helper/css/wordpress.plupload.helper.css', false, '0.2b', 'screen'); + wp_register_script('plupload-helper', get_stylesheet_directory_uri() . '/bower_components/wordpress.plupload.helper/js/min/wordpress.plupload.helper-min.js', array('jquery','plupload-all'), '0.2b', true); } ?> ```