Changeset 2440816
- Timestamp:
- 12/16/2020 04:25:11 PM (5 years ago)
- Location:
- tooltip-ck/trunk
- Files:
-
- 3 edited
-
assets/tooltipck.js (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
-
tooltip-ck.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tooltip-ck/trunk/assets/tooltipck.js
r2257651 r2440816 3 3 * @copyright Copyright (C) 2016. All rights reserved. 4 4 * @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.com5 * @author Cédric KEIFLIN - https://www.joomlack.fr - https://www.template-creator.com - https://www.ceikay.com 6 6 */ 7 7 8 8 /* 9 * Version 2.2.9 : Fix issue with WP5.6 and jQuery update 9 10 * Version 2.2.6 : Fix issue with fade effect, improve tipWidth setting with data attribute 10 11 */ … … 276 277 case 'both': 277 278 default: 278 279 tip.css('display' ,'inline-block'); 279 280 tip.animate({ 280 281 'opacity' : options.opacity, 281 282 'height' : el.tipHeight, 282 283 'width' : el.tipWidth, 283 'display' : 'inline-block',284 // 'display' : 'inline-block', 284 285 // 'zIndex' : '6001' 285 286 }, { … … 296 297 case 'horizontal': 297 298 tip.css('height', el.tipHeight); 299 tip.css('display' ,'inline-block'); 298 300 tip.animate({ 299 301 'opacity' : options.opacity, 300 302 'width' : el.tipWidth, 301 'display' : 'inline-block'303 // 'display' : 'inline-block' 302 304 }, { 303 305 duration: parseInt(tooltip.fxDuration), … … 312 314 case 'vertical': 313 315 tip.css('width', el.tipWidth); 316 tip.css('display' ,'inline-block'); 314 317 tip.animate({ 315 318 'opacity' : options.opacity, 316 319 'height' : el.tipHeight, 317 'display' : 'inline-block'320 // 'display' : 'inline-block' 318 321 }, { 319 322 duration: parseInt(tooltip.fxDuration), -
tooltip-ck/trunk/readme.txt
r2336803 r2440816 3 3 Tags: tooltip 4 4 Requires at least: 4.5 5 Tested up to: 5. 46 Stable tag: 2.2. 85 Tested up to: 5.6 6 Stable tag: 2.2.9 7 7 License: GPLv2 or later 8 8 … … 45 45 46 46 == Changelog == 47 48 = 2.2.9 - 16 december 2020 = 49 * Fix issue with WP5.6 and jQuery update 47 50 48 51 = 2.2.8 - 04 july 2020 = -
tooltip-ck/trunk/tooltip-ck.php
r2336803 r2440816 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. 86 * Version: 2.2.9 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. 7');18 if (! defined('TOOLTIPCK_VERSION')) define('TOOLTIPCK_VERSION', '2.2.9'); 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.