diff options
-rw-r--r-- | librevideojs.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/librevideojs.php b/librevideojs.php index 06015c6..2e03bfc 100644 --- a/librevideojs.php +++ b/librevideojs.php @@ -35,9 +35,9 @@ function librevideojs_base(){ global $post, $theme_url; $theme_url = get_bloginfo('template_url', __FILE__); if ( ( is_author() || is_page() || is_single() ) && strpos($post->post_content, '[librevideojs_video') !== false ){ - wp_enqueue_style('lvjs-mix-master', $theme_url . '/css/mix-material/master.min.css', array(), '1.4'); + wp_enqueue_style('LibreVideoJS', $theme_url . '/css/mix-material/master.min.css', array(), '1.4'); wp_enqueue_script('LibreVideoJS', $theme_url . '/js/cliplibrejs.developer.min.js', array(), L_VERSION); - wp_enqueue_script('jquery-libre', $theme_url . '/js/jquery-3.1.1.min.js', array(), '3.1.1', true); + wp_enqueue_script('jQuery-Libre', $theme_url . '/js/jquery-3.1.1.min.js', array(), '3.1.1', true); } else { return false; |