Changeset 1379815
- Timestamp:
- 03/27/2016 02:34:41 PM (10 years ago)
- Location:
- simple-background-video/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
simple_background_video_zd.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-background-video/trunk/readme.txt
r1379674 r1379815 5 5 Requires at least: 3.0.1 6 6 Tested up to: 4.4 7 Stable tag: 1.2 7 Stable tag: 1.2.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 50 50 == Changelog == 51 51 52 = 1.2.1 = 53 * ‘.js .css files’ update to 1.2 54 52 55 = 1.2 = 53 56 * Bug fix: Autoplay in all videos did not work -
simple-background-video/trunk/simple_background_video_zd.php
r1379814 r1379815 4 4 Plugin URI: http://www.zuhaitz-design.com 5 5 Description: Put a title and a responsive background video as a header in any page. Your video could be from Youtube, Vimeo or MP4! 6 Version: 1.2 6 Version: 1.2.1 7 7 Author: Willy Muñoz 8 8 Author URI: http://www.zuhaitz-design.com … … 258 258 259 259 function load_custom_wp_admin_style() { 260 wp_register_style( 'custom_wp_admin_css', plugin_dir_url( __FILE__ ) . 'css/video-artist.css', false, '1.2 ' );260 wp_register_style( 'custom_wp_admin_css', plugin_dir_url( __FILE__ ) . 'css/video-artist.css', false, '1.2.1' ); 261 261 wp_enqueue_style( 'custom_wp_admin_css' ); 262 wp_register_script( 'video_artist_js', plugin_dir_url( __FILE__ ) . 'js/video-artist.js', false, '1.2 ' );262 wp_register_script( 'video_artist_js', plugin_dir_url( __FILE__ ) . 'js/video-artist.js', false, '1.2.1' ); 263 263 wp_enqueue_script( 'video_artist_js' ); 264 wp_register_script( 'video_media_js', plugin_dir_url( __FILE__ ) . 'js/video-media.js', false, '1.2 ' );264 wp_register_script( 'video_media_js', plugin_dir_url( __FILE__ ) . 'js/video-media.js', false, '1.2.1' ); 265 265 wp_enqueue_script( 'video_media_js' ); 266 266 wp_enqueue_media(); // 2 horas … … 487 487 if (!empty($video_web) || !empty($video_mp4)) { 488 488 489 wp_register_style( 'add_video_css', plugin_dir_url( __FILE__ ) . 'css/add_video.css', false, '1.2 ' );489 wp_register_style( 'add_video_css', plugin_dir_url( __FILE__ ) . 'css/add_video.css', false, '1.2.1' ); 490 490 wp_enqueue_style( 'add_video_css' ); 491 wp_register_script( 'add_video_js', plugin_dir_url( __FILE__ ) . 'js/add_video.js', false, '1.2 ' );491 wp_register_script( 'add_video_js', plugin_dir_url( __FILE__ ) . 'js/add_video.js', false, '1.2.1' ); 492 492 wp_enqueue_script( 'add_video_js' ); 493 493
Note: See TracChangeset
for help on using the changeset viewer.