Plugin Directory

Changeset 2990243


Ignore:
Timestamp:
11/06/2023 09:31:34 PM (2 years ago)
Author:
marcshowpass
Message:

Fix issue with mutation observer rewriting on some android devices

Location:
showpass
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • showpass/trunk/js/showpass-custom.js

    r2951753 r2990243  
    293293
    294294                    let iFrame = document.getElementById('showpass-widget');
     295
     296                    // if query params already exist, exit
     297                    let queryParams = new URLSearchParams(iFrame.src);
     298                    if (queryParams.get('client_id') || queryParams.get('session_id')) {
     299                        return;
     300                    }
    295301
    296302                    // For analytics.js (UA)
  • showpass/trunk/readme.txt

    r2951753 r2990243  
    22Tags: showpass, events, tickets, sell tickets, event calendar, purchase tickets, custom event pages
    33Requires at least: 4.9
    4 Tested up to: 6.0.2
    5 Stable tag: 3.8.5
     4Tested up to: 6.3.2
     5Stable tag: 3.8.6
    66Requires PHP: 5.4.45
    77Contributors: marcshowpass, spapril, spzachary, cgarrovillosp
  • showpass/trunk/showpass-wordpress-plugin-shortcode.php

    r2865314 r2990243  
    992992            wp_enqueue_script('showpass-sdk', plugins_url( '/js/showpass-sdk.js', __FILE__ ), array('jquery'), null, true );
    993993        }
    994         wp_register_script('showpass-calendar-script', plugins_url( '/js/showpass-calendar.js', __FILE__ ), array('jquery'), '3.7.2', true);
     994        wp_register_script('showpass-calendar-script', plugins_url( '/js/showpass-calendar.js', __FILE__ ), array('jquery'), '3.8.6', true);
    995995        wp_register_script('moment-showpass', plugins_url( '/js/moment.js', __FILE__ ), array(), '1.0.1', true);
    996996        wp_register_script('moment-timezone-showpass', plugins_url( '/js/moment-timezone.js', __FILE__ ), array(), '1.0.2', true);
     
    10001000        wp_enqueue_script('moment-timezone-showpass');
    10011001        wp_enqueue_script('js-cookie', plugins_url( '/js/vendor/js.cookie.js', __FILE__ ), array(), '2.2.0', true);
    1002         wp_enqueue_script('showpass-custom', plugins_url( '/js/showpass-custom.js', __FILE__ ), array('jquery'), '3.7.2', true);
     1002        wp_enqueue_script('showpass-custom', plugins_url( '/js/showpass-custom.js', __FILE__ ), array('jquery'), '3.8.6', true);
    10031003    }
    10041004}
  • showpass/trunk/showpass-wordpress-plugin.php

    r2951753 r2990243  
    66 Description: List events, display event details and products. Use the Showpass purchase widget for on site ticket & product purchases all with easy to use shortcodes. See our git repo here for full documentation. https://github.com/showpass/showpass-wordpress-plugin
    77 Author: Showpass / Up In Code Inc.
    8  Version: 3.8.5
     8 Version: 3.8.6
    99 Author URI: https://www.showpass.com
    1010 */
Note: See TracChangeset for help on using the changeset viewer.