Plugin Directory

Changeset 2364102


Ignore:
Timestamp:
08/18/2020 03:58:14 PM (6 years ago)
Author:
JDAdmin
Message:

Adjusted for deprecated jQuery function

Location:
smartvideo/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • smartvideo/trunk/README.txt

    r2361296 r2364102  
    8888== Changelog ==
    8989
    90 = 2.0.16 =
     90= 2.0.17 =
    9191* **Crouching tiger, hidden classic**
    9292  * Fixed issue with SmartVideo Classic widget where you would click to specify a YouTube video and the popup to enter it would never show up
    9393  * For those without that problem, well now is a great time to turn on automatic updates for our plugin if you have the new WordPress 5.5 release. That way if a future update fixes a problem you have, then it gets installed automatically. Like robots, but in the cloud...
     94  * Adjusted for deprecated jquery functionality
    9495
    9596= 2.0.15 =
  • smartvideo/trunk/SmartVideo.php

    r2361296 r2364102  
    1111 * Plugin URI:        https://swarmify.com/wordpress-plugin/
    1212 * Description:       SmartVideo makes building a beautiful, professional video experience for your site effortless.
    13  * Version:           2.0.16
     13 * Version:           2.0.17
    1414 * Author:            Swarmify
    1515 * Author URI:        https://swarmify.com/
     
    3030 * Rename this for your plugin and update it as you release new versions.
    3131 */
    32 define( 'SWARMIFY_PLUGIN_VERSION', '2.0.16' );
     32define( 'SWARMIFY_PLUGIN_VERSION', '2.0.17' );
    3333
    3434/**
  • smartvideo/trunk/admin/js/swarmify-admin.js

    r2307206 r2364102  
    108108
    109109
    110     $(document).on('hover', ".swarmify_info",function(){
     110    $(document).on('mouseenter mouseleave', ".swarmify_info",function(){
    111111        var tooltip = $($(this)).next();
    112112        tooltip.toggle();
Note: See TracChangeset for help on using the changeset viewer.