Plugin Directory

Changeset 1379815


Ignore:
Timestamp:
03/27/2016 02:34:41 PM (10 years ago)
Author:
willyxd
Message:

.js 1.2.1

Location:
simple-background-video/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • simple-background-video/trunk/readme.txt

    r1379674 r1379815  
    55Requires at least: 3.0.1
    66Tested up to: 4.4
    7 Stable tag: 1.2
     7Stable tag: 1.2.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5050== Changelog ==
    5151
     52= 1.2.1 =
     53* ‘.js .css files’ update to 1.2
     54
    5255= 1.2 =
    5356* Bug fix: Autoplay in all videos did not work
  • simple-background-video/trunk/simple_background_video_zd.php

    r1379814 r1379815  
    44Plugin URI: http://www.zuhaitz-design.com
    55Description: 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
     6Version: 1.2.1
    77Author: Willy Muñoz
    88Author URI: http://www.zuhaitz-design.com
     
    258258
    259259    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' );
    261261            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' );
    263263            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' );
    265265            wp_enqueue_script( 'video_media_js' );
    266266            wp_enqueue_media(); // 2 horas
     
    487487    if (!empty($video_web) || !empty($video_mp4)) {
    488488
    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' );
    490490        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' );
    492492        wp_enqueue_script( 'add_video_js' );
    493493
Note: See TracChangeset for help on using the changeset viewer.