Changeset 3133483
- Timestamp:
- 08/10/2024 02:12:16 PM (19 months ago)
- Location:
- twenty20
- Files:
-
- 39 added
- 3 edited
-
tags/1.7.5 (added)
-
tags/1.7.5/assets (added)
-
tags/1.7.5/assets/css (added)
-
tags/1.7.5/assets/css/admin.css (added)
-
tags/1.7.5/assets/css/twenty20.css (added)
-
tags/1.7.5/assets/images (added)
-
tags/1.7.5/assets/images/icon-t20.png (added)
-
tags/1.7.5/assets/images/placeholder.png (added)
-
tags/1.7.5/assets/images/twenty20.png (added)
-
tags/1.7.5/assets/js (added)
-
tags/1.7.5/assets/js/image-uploader.js (added)
-
tags/1.7.5/assets/js/jquery.event.move.js (added)
-
tags/1.7.5/assets/js/jquery.twenty20.js (added)
-
tags/1.7.5/assets/js/media_button.js (added)
-
tags/1.7.5/inc (added)
-
tags/1.7.5/inc/elementor (added)
-
tags/1.7.5/inc/elementor-class.php (added)
-
tags/1.7.5/inc/elementor-widget.php (added)
-
tags/1.7.5/inc/elementor/twenty20-elementor.php (added)
-
tags/1.7.5/inc/enqueue.php (added)
-
tags/1.7.5/inc/for-flatsome-ux-builder.php (added)
-
tags/1.7.5/inc/templates (added)
-
tags/1.7.5/inc/templates/twenty20.html (added)
-
tags/1.7.5/inc/twenty20-shortcode-vc.php (added)
-
tags/1.7.5/inc/twenty20-shortcode.php (added)
-
tags/1.7.5/inc/widget-twenty20.php (added)
-
tags/1.7.5/readme.txt (added)
-
tags/1.7.5/screenshot-1.png (added)
-
tags/1.7.5/screenshot-10.png (added)
-
tags/1.7.5/screenshot-11.png (added)
-
tags/1.7.5/screenshot-2.png (added)
-
tags/1.7.5/screenshot-3.png (added)
-
tags/1.7.5/screenshot-4.png (added)
-
tags/1.7.5/screenshot-5.png (added)
-
tags/1.7.5/screenshot-6.png (added)
-
tags/1.7.5/screenshot-7.png (added)
-
tags/1.7.5/screenshot-8.png (added)
-
tags/1.7.5/screenshot-9.png (added)
-
tags/1.7.5/ttwenty.php (added)
-
trunk/inc/enqueue.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/ttwenty.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
twenty20/trunk/inc/enqueue.php
r3133151 r3133483 12 12 wp_enqueue_script( 'twenty20-eventmove', ZB_T20_URL . '/assets/js/jquery.event.move.js', array( 'jquery' ), ZB_T20_VER, true ); 13 13 14 // Ensure the scripts and styles load in Elementor editor as well 15 if ( \Elementor\Plugin::instance()->editor->is_edit_mode() ) { 16 wp_enqueue_style( 'twenty20-elementor-style' ); 17 wp_enqueue_script( 'twenty20-elementor-script' ); 14 if ( class_exists( 'Elementor\Plugin' ) ) { 15 // Ensure the scripts and styles load in Elementor editor as well 16 if ( \Elementor\Plugin::instance()->editor->is_edit_mode() ) { 17 wp_enqueue_style( 'twenty20-elementor-style' ); 18 wp_enqueue_script( 'twenty20-elementor-script' ); 19 } 18 20 } 19 21 -
twenty20/trunk/readme.txt
r3133151 r3133483 6 6 Tested up to: 6.6 7 7 Requires PHP: 5.6 8 Stable tag: 1.7. 48 Stable tag: 1.7.5 9 9 License: GPLv2 or later 10 10 … … 104 104 == Changelog == 105 105 106 = 1.7.5 = 107 * Fixed Elementor Widget 108 106 109 = 1.7.4 = 107 110 * Fixed Elementor Widget -
twenty20/trunk/ttwenty.php
r3133151 r3133483 4 4 Plugin URI: https://wordpress.org/plugins/twenty20/ 5 5 Description: Need to highlight the differences between two images? Makes it easy with Twenty20 plugin. 6 Version: 1.7. 46 Version: 1.7.5 7 7 Author: Zayed Baloch 8 8 Author URI: https://www.zayedbaloch.com/ … … 12 12 defined('ABSPATH') or die("No script kiddies please!"); 13 13 14 define('ZB_T20_VER', '1.7. 4');14 define('ZB_T20_VER', '1.7.5'); 15 15 define('ZB_T20_URL', plugins_url('', __FILE__)); 16 16 define('ZB_T20_DOMAIN', 'zb_twenty20');
Note: See TracChangeset
for help on using the changeset viewer.