Plugin Directory

Changeset 3233644


Ignore:
Timestamp:
02/03/2025 05:03:21 AM (14 months ago)
Author:
wonderplugin
Message:

Version 2.3

Location:
wonderplugin-video-embed/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • wonderplugin-video-embed/trunk/app/class-wonderplugin-videoembed-widgetview.php

    r3233637 r3233644  
    234234        foreach($atts as $key => $value)
    235235        {
    236             $atts[$key] = preg_replace('/on\S*|script|javascript|vbscript|data|expression|binding/i', '', $value);
     236            $atts[$key] = preg_replace('/\bon\S*|\bscript|\bjavascript|\bvbscript|\bdata|\bexpression|\bbinding/i', '', $value);
    237237        }
    238238
  • wonderplugin-video-embed/trunk/app/wonderplugin-videoembed-creator.js

    r3233637 r3233644  
    22 * Copyright 2025 Magic Hills Pty Ltd All Rights Reserved
    33 * Website: https://www.wonderplugin.com
    4  * Version 2.2
     4 * Version 2.3
    55 */
    66(function($){$(document).ready(function(){$(document).on("click",".wpve-tab-label",function(){var parent_con=$(this).closest(".wpve-tab-container");parent_con.find(".wpve-tab-label").removeClass("wpve-tab-label-selected");$(this).addClass("wpve-tab-label-selected");parent_con.find(".wpve-tab-content").removeClass("wpve-tab-content-selected");parent_con.find("."+$(this).data("contentclass")).addClass("wpve-tab-content-selected");window.wpve_activetab=$(this).data("contentclass")});$(document).on("widget-updated",
  • wonderplugin-video-embed/trunk/app/wonderplugin-videoembed-mce.js

    r3233637 r3233644  
    22 * Copyright 2025 Magic Hills Pty Ltd All Rights Reserved
    33 * Website: https://www.wonderplugin.com
    4  * Version 2.2
     4 * Version 2.3
    55 */
    66(function($){tinymce.PluginManager.add("wpve_mce_button",function(editor,url){editor.addButton("wpve_mce_button",{text:" Video",title:"Wonder Video Embed",icon:true,image:url+"/logo-72.png",onclick:function(){wpve_options_form(editor)}})});function get_url_arams(href){var result={};if(href.indexOf("?")<0)return result;var params=href.substring(href.indexOf("?")+1).split("&");for(var i=0;i<params.length;i++){var value=params[i].split("=");if(value&&value.length==2&&value[0].toLowerCase()!="v")result[value[0].toLowerCase()]=
  • wonderplugin-video-embed/trunk/engine/wonderpluginvideoembed.js

    r3233637 r3233644  
    22 * Copyright 2025 Magic Hills Pty Ltd All Rights Reserved
    33 * Website: https://www.wonderplugin.com
    4  * Version 2.2
     4 * Version 2.3
    55 */
    66(function($){$(document).ready(function(){$("head").append('<style type="text/css">.wonderplugin-video,.wonderplugin-video * {box-sizing:border-box;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;}</style>');$(".wonderplugin-videoembed-engine").hide();$(".wonderplugin-video").each(function(index){var inst=this;inst.options={stamp:false,videohidecontrols:false,videohideplaybutton:false,nativehtml5controls:false,nativecontrolsonfirefox:false,nativecontrolsonie:false,nativecontrolsoniphone:true,
  • wonderplugin-video-embed/trunk/readme.txt

    r3233637 r3233644  
    6868== Changelog ==
    6969
     70= 2.3 =
     71* Fix an issue when matching JavaScript keywords
     72
    7073= 2.2 =
    7174* Sanitize HTML content before rendering
  • wonderplugin-video-embed/trunk/wonderpluginvideoembed.php

    r3233637 r3233644  
    44Plugin URI: https://www.wonderplugin.com/wordpress-video-player/
    55Description: WordPress Video Embed Plugin & Widget
    6 Version: 2.2
     6Version: 2.3
    77Author: Magic Hills Pty Ltd
    88Author URI: https://www.wonderplugin.com
     
    1515    return;
    1616
    17 define('WONDERPLUGIN_VIDEOEMBED_VERSION', '2.2');
     17define('WONDERPLUGIN_VIDEOEMBED_VERSION', '2.3');
    1818define('WONDERPLUGIN_VIDEOEMBED_URL', plugin_dir_url( __FILE__ ));
    1919define('WONDERPLUGIN_VIDEOEMBED_PATH', plugin_dir_path( __FILE__ ));
    2020define('WONDERPLUGIN_VIDEOEMBED_PLUGIN', basename(dirname(__FILE__)) . '/' . basename(__FILE__));
    21 define('WONDERPLUGIN_VIDEOEMBED_PLUGIN_VERSION', '2.2');
     21define('WONDERPLUGIN_VIDEOEMBED_PLUGIN_VERSION', '2.3');
    2222
    2323require_once 'app/class-wonderplugin-videoembed-controller.php';
Note: See TracChangeset for help on using the changeset viewer.