Plugin Directory

Changeset 2330050


Ignore:
Timestamp:
06/24/2020 03:02:25 PM (6 years ago)
Author:
azexo
Message:

from shopify

Location:
page-builder-by-azexo/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • page-builder-by-azexo/trunk/azexo_html.php

    r2323814 r2330050  
    55  Author: azexo
    66  Author URI: http://azexo.com
    7   Version: 1.27.126
     7  Version: 1.27.127
    88  Text Domain: azh
    99 */
    1010
    1111define('AZH_VERSION', '1.27');
    12 define('AZH_PLUGIN_VERSION', '1.27.126');
     12define('AZH_PLUGIN_VERSION', '1.27.127');
    1313define('AZH_URL', plugins_url('', __FILE__));
    1414define('AZH_DIR', trailingslashit(dirname(__FILE__)));
  • page-builder-by-azexo/trunk/js/frontend.js

    r2326859 r2330050  
    15131513                        $map.find(hash).stop().fadeIn();
    15141514                    }
    1515                 }).first().trigger('mouseenter').closest('.az-svg').addClass('az-active');
     1515                }).on('mouseleave', function () {
     1516                    var $polygone = $(this).closest('.az-polygone');
     1517                    var $map = $polygone.closest('.az-image-map');
     1518                    if(!$map.is('.az-switch') && !customize) {
     1519                        $map.find('.az-polygone.az-active').removeClass('az-active');
     1520                        $map.find('.az-polygone[data-id]').each(function () {
     1521                            $map.find($(this).attr('data-id')).hide();
     1522                        });
     1523                    }
     1524                }).first().trigger('mouseenter').closest('.az-svg').addClass('az-active');                   
    15161525                $map.find('.az-polygone[data-id] svg polygon').on('click', function () {
    15171526                    var $polygone = $(this).closest('.az-polygone');
Note: See TracChangeset for help on using the changeset viewer.