Plugin Directory

Changeset 2440816


Ignore:
Timestamp:
12/16/2020 04:25:11 PM (5 years ago)
Author:
ced1870
Message:

2.2.9

Location:
tooltip-ck/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • tooltip-ck/trunk/assets/tooltipck.js

    r2257651 r2440816  
    33 * @copyright   Copyright (C) 2016. All rights reserved.
    44 * @license     GNU General Public License version 2 or later; see LICENSE.txt
    5  * @author      Cédric KEIFLIN - http://www.joomlack.fr - http://www.template-creator.com - https://www.ceikay.com
     5 * @author      Cédric KEIFLIN - https://www.joomlack.fr - https://www.template-creator.com - https://www.ceikay.com
    66 */
    77 
    88 /*
     9 * Version 2.2.9 : Fix issue with WP5.6 and jQuery update
    910 * Version 2.2.6 : Fix issue with fade effect, improve tipWidth setting with data attribute
    1011 */
     
    276277                    case 'both':
    277278                    default:
    278                        
     279                        tip.css('display' ,'inline-block');
    279280                        tip.animate({
    280281                            'opacity' : options.opacity,
    281282                            'height' : el.tipHeight,
    282283                            'width' : el.tipWidth,
    283                             'display' : 'inline-block',
     284                            // 'display' : 'inline-block',
    284285                            // 'zIndex' : '6001'
    285286                            }, {
     
    296297                    case 'horizontal':
    297298                        tip.css('height', el.tipHeight);
     299                        tip.css('display' ,'inline-block');
    298300                        tip.animate({
    299301                            'opacity' : options.opacity,
    300302                            'width' : el.tipWidth,
    301                             'display' : 'inline-block'
     303                            // 'display' : 'inline-block'
    302304                            }, {
    303305                                duration: parseInt(tooltip.fxDuration),
     
    312314                    case 'vertical':
    313315                        tip.css('width', el.tipWidth);
     316                        tip.css('display' ,'inline-block');
    314317                        tip.animate({
    315318                            'opacity' : options.opacity,
    316319                            'height' : el.tipHeight,
    317                             'display' : 'inline-block'
     320                            // 'display' : 'inline-block'
    318321                            }, {
    319322                                duration: parseInt(tooltip.fxDuration),
  • tooltip-ck/trunk/readme.txt

    r2336803 r2440816  
    33Tags: tooltip
    44Requires at least: 4.5
    5 Tested up to: 5.4
    6 Stable tag: 2.2.8
     5Tested up to: 5.6
     6Stable tag: 2.2.9
    77License: GPLv2 or later
    88
     
    4545
    4646== Changelog ==
     47
     48= 2.2.9 - 16 december 2020 =
     49* Fix issue with WP5.6 and jQuery update
    4750
    4851= 2.2.8 - 04 july 2020 =
  • tooltip-ck/trunk/tooltip-ck.php

    r2336803 r2440816  
    44 * Plugin URI: https://www.ceikay.com/plugins/tooltip-ck
    55 * 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.8
     6 * Version: 2.2.9
    77 * Author: Cédric KEIFLIN
    88 * Author URI: https://www.ceikay.com
     
    1616
    1717if (! defined('CK_LOADED')) define('CK_LOADED', 1);
    18 if (! defined('TOOLTIPCK_VERSION')) define('TOOLTIPCK_VERSION', '2.2.7');
     18if (! defined('TOOLTIPCK_VERSION')) define('TOOLTIPCK_VERSION', '2.2.9');
    1919if (! defined('TOOLTIPCK_PLATFORM')) define('TOOLTIPCK_PLATFORM', 'wordpress');
    2020if (! defined('TOOLTIPCK_PATH')) define('TOOLTIPCK_PATH', dirname(__FILE__));
Note: See TracChangeset for help on using the changeset viewer.