Plugin Directory

Changeset 2456804


Ignore:
Timestamp:
01/15/2021 08:30:03 AM (5 years ago)
Author:
ced1870
Message:

1.4.7

Location:
slideshow-ck/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • slideshow-ck/trunk/helpers/tinymce.php

    r2069487 r2456804  
    2828    wp_enqueue_style( 'slideshowck_tinymce', SLIDESHOWCK_MEDIA_URL . '/assets/tinymce.css' );
    2929    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');
    3132    wp_enqueue_script( 'ckbox', SLIDESHOWCK_MEDIA_URL . '/assets/ckbox.js' );
    3233    wp_localize_script(
  • slideshow-ck/trunk/readme.txt

    r2451458 r2456804  
    44Requires at least: 4.0
    55Tested up to: 5.6
    6 Stable tag: 1.4.6
     6Stable tag: 1.4.7
    77License: GPLv2 or later
    88
     
    5555== Changelog ==
    5656
     57= 1.4.7 - 15 january 2021 =
     58* Fix issue with DIVI editor
     59
    5760= 1.4.6 - 06 january 2021 =
    5861* Fix issue with navigation arrows on mobile
  • slideshow-ck/trunk/slideshow-ck.php

    r2451458 r2456804  
    44 * Plugin URI: https://www.ceikay.com/plugins/slideshow-ck
    55 * Description: Slideshow CK is a responsive slideshow plugin that show your images with nice effects.
    6  * Version: 1.4.6
     6 * Version: 1.4.7
    77 * Author: Cédric KEIFLIN
    88 * Author URI: https://www.ceikay.com/
     
    1717
    1818if (! defined('CK_LOADED')) define('CK_LOADED', 1);
    19 if (! defined('SLIDESHOWCK_VERSION')) define('SLIDESHOWCK_VERSION', '1.4.6');
     19if (! defined('SLIDESHOWCK_VERSION')) define('SLIDESHOWCK_VERSION', '1.4.7');
    2020if (! defined('SLIDESHOWCK_PLATFORM')) define('SLIDESHOWCK_PLATFORM', 'wordpress');
    2121if (! defined('SLIDESHOWCK_PATH')) define('SLIDESHOWCK_PATH', dirname(__FILE__));
Note: See TracChangeset for help on using the changeset viewer.