Changeset 3208676
- Timestamp:
- 12/16/2024 04:03:22 PM (13 months ago)
- Location:
- interactive-image-map-builder/trunk
- Files:
-
- 3 edited
-
assets/js/main-output-file.js (modified) (8 diffs)
-
index.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
interactive-image-map-builder/trunk/assets/js/main-output-file.js
r3158849 r3208676 80 80 selectedCls.forEach(function (el) { 81 81 el.addEventListener("click", function () { 82 isimb_6310_create_polygon(); 83 }); 84 el.addEventListener("touchstart", function () { 82 85 isimb_6310_create_polygon(); 83 86 }); … … 497 500 498 501 function isimb_6310_close_button() { 499 jQuery("body").on("click ", function (event) {502 jQuery("body").on("click touchstart", function (event) { 500 503 if (event.target.closest(".isimb-6310-modal-content")) return; 501 504 if (!event.target.closest(".isimb-6310-modal")) return; … … 534 537 }); 535 538 536 jQuery("body").on("click ", ".isimb-6310-close-button", function (event) {539 jQuery("body").on("click touchstart", ".isimb-6310-close-button", function (event) { 537 540 jQuery(".isimb-6310-modal").css({ 538 541 display: "none", … … 573 576 //Popup Open 574 577 jQuery("body").on( 575 "click ",578 "click touchstart", 576 579 ".isimb-6310-pol-loaded, .isimb-6310-pol-loaded-nested", 577 580 function () { … … 687 690 //Hover on pointer 688 691 jQuery(".isimb-6310-pol-loaded, .isimb-6310-pol-loaded-nested") 689 . mouseover(function () {692 .on('mouseover touchstart', function () { 690 693 clearTimeout(isimb_6310_Timeout); 691 694 let pointId = … … 733 736 setTimeout(function () { 734 737 jQuery(".isimb-6310-hover-content") 735 . mouseover(function () {738 .on('mouseover touchstart', function () { 736 739 clearTimeout(isimb_6310_Timeout); 737 740 }) … … 770 773 function isimb_6310_direct_link() { 771 774 setTimeout(() => { 772 jQuery("body").on("click ", "[isimb-6310-direct-link]", function () {775 jQuery("body").on("click touchstart", "[isimb-6310-direct-link]", function () { 773 776 var target = Number( 774 777 jQuery(this).closest("polygon").attr("isimb-6310-direct-link-target") … … 790 793 function isimb_6310_polygon_color_change() { 791 794 jQuery("body").on( 792 "mouseover ",795 "mouseover touchstart", 793 796 ".isimb-6310-pol-loaded-nested, .isimb-6310-pol-loaded", 794 797 function () { -
interactive-image-map-builder/trunk/index.php
r3200301 r3208676 7 7 Author: Mehjabin Orthi 8 8 Author URI: https://www.wpmart.org/ 9 Version: 2. 59 Version: 2.6 10 10 */ 11 11 if (!defined('ABSPATH')) … … 18 18 define('isimb_6310_plugin_url', plugin_dir_path(__FILE__)); 19 19 define('isimb_6310_plugin_dir_url', plugin_dir_url(__FILE__)); 20 define('isimb_6310_PLUGIN_CURRENT_VERSION', 2. 5);20 define('isimb_6310_PLUGIN_CURRENT_VERSION', 2.6); 21 21 22 22 add_shortcode('isimb_6310_builder', 'isimb_6310_builder_shortcode'); -
interactive-image-map-builder/trunk/readme.txt
r3200301 r3208676 4 4 Requires at least: 5.4 5 5 Tested up to: 6.7 6 Stable tag: 2. 56 Stable tag: 2.6 7 7 Requires PHP: 5.6 8 8 License: GPLv2 or later … … 132 132 133 133 == Changelog == 134 = 2.6 = 135 * Fixed iPad issue 136 134 137 = 2.5 = 135 138 * Duplicate option added
Note: See TracChangeset
for help on using the changeset viewer.