Plugin Directory

Changeset 2279497


Ignore:
Timestamp:
04/08/2020 04:53:32 PM (6 years ago)
Author:
organicthemes
Message:

Organic Builder Widgets: Updating plugin to version 1.4.7

  • Fixed insecure link for enqueueing YouTube API
Location:
organic-customizer-widgets
Files:
132 added
3 edited

Legend:

Unmodified
Added
Removed
  • organic-customizer-widgets/trunk/README.txt

    r2273227 r2279497  
    33Donate link: https://organicthemes.com
    44Tags: builder, customizer, widgets, slideshows, testimonials, portfolio, fontawesome, icons, pricing tables, page builder, full-width sections, custom widget areas, bundle, custom widgets, widget area, block
    5 Stable tag: 1.4.6
     5Stable tag: 1.4.7
    66Requires at least: 4.8
    77Tested up to: 5.4
     
    152152== Changelog ==
    153153
     154= 1.4.7 =
     155* Fixed insecure link for enqueueing YouTube API
     156
    154157= 1.4.6 =
    155158* Background video updates
  • organic-customizer-widgets/trunk/organic-widgets.php

    r2267513 r2279497  
    1010 * Plugin URI:        https://organicthemes.com/organic-customizer-widgets
    1111 * Description:       Transform the core WordPress Customizer into a page builder. Display and arrange widgets on any page as beautiful content sections, such as featured content slideshows, testimonials, team members, portfolios, feature lists, pricing tables and more. Whoa, cool.
    12  * Version:           1.4.6
     12 * Version:           1.4.7
    1313 * Author:            Organic Themes
    1414 * Author URI:        https://organicthemes.com
     
    2020
    2121// Current Version (Keep in sync with Version # above).
    22 define( 'ORGANIC_WIDGETS_CURRENT_VERSION', '1.4.6' );
     22define( 'ORGANIC_WIDGETS_CURRENT_VERSION', '1.4.7' );
    2323
    2424// If this file is called directly, abort.
  • organic-customizer-widgets/trunk/public/class-organic-widgets-public.php

    r2267513 r2279497  
    8787    public function enqueue_scripts() {
    8888        wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/organic-widgets-public.js', array( 'jquery' ), $this->version, false );
    89         wp_enqueue_script( 'yt-player-api', 'http://www.youtube.com/player_api', array(), '1.0', true );
     89        wp_enqueue_script( 'yt-player-api', 'https://www.youtube.com/player_api', array(), '1.0', true );
    9090    }
    9191
Note: See TracChangeset for help on using the changeset viewer.