Changeset 3015693
- Timestamp:
- 12/30/2023 07:19:03 AM (2 years ago)
- Location:
- interactive-image-map-builder/trunk
- Files:
-
- 3 edited
-
assets/js/main-output-file.js (modified) (1 diff)
-
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
r3010579 r3015693 59 59 60 60 window.addEventListener("resize", function () { 61 // isimb_6310_create_polygon(); 61 let mainImgList = jQuery(".isimb-6310-main-image"); 62 mainImgList.each(function () { 63 let orgWidth = jQuery(this).width(); 64 let orgHeight = jQuery(this).height(); 65 if (orgWidth && orgHeight) { 66 let closest = jQuery(this).closest(".isimb-6310-builder-box"); 67 closest 68 .find(".isimb-6310-main-svg") 69 .attr("width", orgWidth) 70 .attr("height", orgHeight); 71 closest.find(".isimb-6310-main-svg").css({ 72 "background-size": orgWidth + "px " + orgHeight + "px", 73 display: "block", 74 }); 75 jQuery(this).css({ display: "none" }); 76 isimb_6310_default_polygon(closest, orgWidth, orgHeight); 77 } 78 }); 62 79 }); 80 63 81 function isimb_6310_setTooltipPosition(pointId, alwaysShow = 2, icons) { 64 82 let jsonData = JSON.parse( -
interactive-image-map-builder/trunk/index.php
r3010584 r3015693 7 7 Author: Mehjabin Orthi 8 8 Author URI: https://www.wpmart.org/ 9 Version: 1. 79 Version: 1.8 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', 1. 7);20 define ( 'isimb_6310_PLUGIN_CURRENT_VERSION', 1.8 ); 21 21 22 22 add_shortcode('isimb_6310_builder', 'isimb_6310_builder_shortcode'); -
interactive-image-map-builder/trunk/readme.txt
r3010584 r3015693 4 4 Requires at least: 5.1 5 5 Tested up to: 6.4 6 Stable tag: 1. 76 Stable tag: 1.8 7 7 Requires PHP: 5.6 8 8 License: GPLv2 or later … … 132 132 133 133 == Changelog == 134 = 1.8 = 135 * Fixed responsive issue 136 134 137 = 1.7 = 135 138 * Fixed image issue
Note: See TracChangeset
for help on using the changeset viewer.