Changeset 2456804
- Timestamp:
- 01/15/2021 08:30:03 AM (5 years ago)
- Location:
- slideshow-ck/trunk
- Files:
-
- 3 edited
-
helpers/tinymce.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
slideshow-ck.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
slideshow-ck/trunk/helpers/tinymce.php
r2069487 r2456804 28 28 wp_enqueue_style( 'slideshowck_tinymce', SLIDESHOWCK_MEDIA_URL . '/assets/tinymce.css' ); 29 29 wp_enqueue_style( 'ckbox', SLIDESHOWCK_MEDIA_URL . '/assets/ckbox.css' ); 30 wp_enqueue_script( 'slideshowck_tinymce', SLIDESHOWCK_MEDIA_URL . '/assets/tinymce.js' ); 30 $isDivi = isset($_REQUEST['page']) && $_REQUEST['page'] === 'et_theme_builder'; 31 if (! $isDivi) wp_enqueue_script( 'slideshowck_tinymce', SLIDESHOWCK_MEDIA_URL . '/assets/tinymce.js'); 31 32 wp_enqueue_script( 'ckbox', SLIDESHOWCK_MEDIA_URL . '/assets/ckbox.js' ); 32 33 wp_localize_script( -
slideshow-ck/trunk/readme.txt
r2451458 r2456804 4 4 Requires at least: 4.0 5 5 Tested up to: 5.6 6 Stable tag: 1.4. 66 Stable tag: 1.4.7 7 7 License: GPLv2 or later 8 8 … … 55 55 == Changelog == 56 56 57 = 1.4.7 - 15 january 2021 = 58 * Fix issue with DIVI editor 59 57 60 = 1.4.6 - 06 january 2021 = 58 61 * Fix issue with navigation arrows on mobile -
slideshow-ck/trunk/slideshow-ck.php
r2451458 r2456804 4 4 * Plugin URI: https://www.ceikay.com/plugins/slideshow-ck 5 5 * Description: Slideshow CK is a responsive slideshow plugin that show your images with nice effects. 6 * Version: 1.4. 66 * Version: 1.4.7 7 7 * Author: Cédric KEIFLIN 8 8 * Author URI: https://www.ceikay.com/ … … 17 17 18 18 if (! defined('CK_LOADED')) define('CK_LOADED', 1); 19 if (! defined('SLIDESHOWCK_VERSION')) define('SLIDESHOWCK_VERSION', '1.4. 6');19 if (! defined('SLIDESHOWCK_VERSION')) define('SLIDESHOWCK_VERSION', '1.4.7'); 20 20 if (! defined('SLIDESHOWCK_PLATFORM')) define('SLIDESHOWCK_PLATFORM', 'wordpress'); 21 21 if (! defined('SLIDESHOWCK_PATH')) define('SLIDESHOWCK_PATH', dirname(__FILE__));
Note: See TracChangeset
for help on using the changeset viewer.