Plugin Directory

Changeset 1554459


Ignore:
Timestamp:
12/14/2016 11:40:12 AM (9 years ago)
Author:
Cohhe
Message:

On certain browsers it wasn't possible to style the popup, this is now fixed

Location:
popup-manager
Files:
3 edited
16 copied

Legend:

Unmodified
Added
Removed
  • popup-manager/tags/1.6.4/README.txt

    r1552551 r1554459  
    44Requires at least: 4.5
    55Tested up to: 4.7
    6 Stable tag: 1.6.3
     6Stable tag: 1.6.4
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7070
    7171== Changelog ==
     72
     73= 1.6.4 =
     74* On certain browsers, it wasn't possible to use style configuration feature. This bug is now fixed.
    7275
    7376= 1.6.3 =
  • popup-manager/tags/1.6.4/admin/js/pm-functionality-admin.js

    r1545964 r1554459  
    469469                    jQuery('#email-template-last-clicked').val(jQuery(this).prop('tagName')+'.'+jQuery(this).attr('class').replace(/\  /g, ' ').replace(/\s/g, '.').slice(0, -1));
    470470                }
    471             } else if ( typeof jQuery(e.originalEvent.path['0']).attr('class') != 'undefined' )  {
    472                 current_element = jQuery(e.originalEvent.path['0']);
     471            } else if ( typeof jQuery(e.target).attr('class') != 'undefined' )  {
     472                current_element = jQuery(e.target);
    473473                jQuery('#email-template-last-clicked').val('.'+current_element.attr('class').replace(/\s/g, '.'));
    474474            } else {
  • popup-manager/tags/1.6.4/popup-manager.php

    r1552551 r1554459  
    1717 * Plugin URI:        http://wppopupmanager.com/
    1818 * Description:       Popup Manager adds popup functionality to the theme
    19  * Version:           1.6.3
     19 * Version:           1.6.4
    2020 * Author:            Cohhe
    2121 * Author URI:        https://cohhe.com/
  • popup-manager/trunk/README.txt

    r1552551 r1554459  
    44Requires at least: 4.5
    55Tested up to: 4.7
    6 Stable tag: 1.6.3
     6Stable tag: 1.6.4
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7070
    7171== Changelog ==
     72
     73= 1.6.4 =
     74* On certain browsers, it wasn't possible to use style configuration feature. This bug is now fixed.
    7275
    7376= 1.6.3 =
  • popup-manager/trunk/admin/js/pm-functionality-admin.js

    r1545964 r1554459  
    469469                    jQuery('#email-template-last-clicked').val(jQuery(this).prop('tagName')+'.'+jQuery(this).attr('class').replace(/\  /g, ' ').replace(/\s/g, '.').slice(0, -1));
    470470                }
    471             } else if ( typeof jQuery(e.originalEvent.path['0']).attr('class') != 'undefined' )  {
    472                 current_element = jQuery(e.originalEvent.path['0']);
     471            } else if ( typeof jQuery(e.target).attr('class') != 'undefined' )  {
     472                current_element = jQuery(e.target);
    473473                jQuery('#email-template-last-clicked').val('.'+current_element.attr('class').replace(/\s/g, '.'));
    474474            } else {
  • popup-manager/trunk/popup-manager.php

    r1552551 r1554459  
    1717 * Plugin URI:        http://wppopupmanager.com/
    1818 * Description:       Popup Manager adds popup functionality to the theme
    19  * Version:           1.6.3
     19 * Version:           1.6.4
    2020 * Author:            Cohhe
    2121 * Author URI:        https://cohhe.com/
Note: See TracChangeset for help on using the changeset viewer.