Changeset 2489716
- Timestamp:
- 03/08/2021 04:33:55 PM (5 years ago)
- Location:
- tooltip-ck/trunk
- Files:
-
- 4 edited
-
assets/tooltipck.js (modified) (2 diffs)
-
includes/class.front.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
tooltip-ck.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tooltip-ck/trunk/assets/tooltipck.js
r2440821 r2489716 78 78 79 79 tooltip.attr('data-done', '1'); 80 80 81 if (options.isMobile == 1) { 81 82 tooltip.click(function() { … … 104 105 $(window).on('click', function(event){ 105 106 if ( 106 (tooltip.data('status') == 'open' || tooltip.data('status') == 'opened')107 tooltip.data('status') == 'open' 107 108 && 108 109 tooltip.has(event.target).length == 0 //checks if descendants was clicked -
tooltip-ck/trunk/includes/class.front.php
r2450030 r2489716 21 21 add_action('wp_footer', array( $this, 'load_inline_css')); 22 22 add_action('wp_enqueue_scripts', array( $this, 'load_assets_files')); 23 add_action('wp', array( $this, 'do_my_ob_start') );23 // add_action('wp', array( $this, 'do_my_ob_start') ); 24 24 // add_action('template_redirect',array( $this, 'do_my_ob_start') ); 25 25 add_filter('the_content', array( $this, 'search_key' ), 0 ); -
tooltip-ck/trunk/readme.txt
r2450030 r2489716 4 4 Requires at least: 4.5 5 5 Tested up to: 5.6 6 Stable tag: 2.2.1 06 Stable tag: 2.2.11 7 7 License: GPLv2 or later 8 8 … … 45 45 46 46 == Changelog == 47 48 = 2.2.11 - 08 march 2021 = 49 * Fix issue with Divi 47 50 48 51 = 2.2.10 - 4 january 2021 = -
tooltip-ck/trunk/tooltip-ck.php
r2450030 r2489716 4 4 * Plugin URI: https://www.ceikay.com/plugins/tooltip-ck 5 5 * Description: Tooltip CK allows you to put some nice tooltip effects into your content. Example : {tooltip}Text to hover{end-text}a friendly little boy{end-tooltip} 6 * Version: 2.2.1 06 * Version: 2.2.11 7 7 * Author: Cédric KEIFLIN 8 8 * Author URI: https://www.ceikay.com … … 16 16 17 17 if (! defined('CK_LOADED')) define('CK_LOADED', 1); 18 if (! defined('TOOLTIPCK_VERSION')) define('TOOLTIPCK_VERSION', '2.2.1 0');18 if (! defined('TOOLTIPCK_VERSION')) define('TOOLTIPCK_VERSION', '2.2.11'); 19 19 if (! defined('TOOLTIPCK_PLATFORM')) define('TOOLTIPCK_PLATFORM', 'wordpress'); 20 20 if (! defined('TOOLTIPCK_PATH')) define('TOOLTIPCK_PATH', dirname(__FILE__));
Note: See TracChangeset
for help on using the changeset viewer.