<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">var trx_popup = jQuery(".trx_popup"); 
var trx_popup_delay = trx_popup.data('delay'); 
var trx_popup_interval = trx_popup.data('refresh-interval'); 

jQuery(window).on('load', function()Â&nbsp; {Â&nbsp;Â&nbsp;Â&nbsp;Â&nbsp;    
        'useÂ&nbsp;strict';Â&nbsp;Â&nbsp;Â&nbsp;
        if ( window.self !== window.top) {
            return;
        }
        setTimeout(function() {
            trx_popup_open_close(); 
        }, trx_popup_delay * 1000);
    });

function trx_popup_open_close()Â&nbsp; {
    'useÂ&nbsp;strict';Â&nbsp;Â&nbsp;Â&nbsp;Â&nbsp;

    // Close
    jQuery(".trx_popup_close").on('click', function()Â&nbsp; {Â&nbsp;Â&nbsp;
        trx_popup.addClass('close');
        setTimeout(function()Â&nbsp; {Â&nbsp;Â&nbsp;Â&nbsp;Â&nbsp;
            trx_popup.remove();
        }, 1000);
    });

    // Set/remove cache
    if ( trx_popup.hasClass("has-cache") ) {
        jQuery(".trx_popup_close").on('click', function()Â&nbsp; {Â&nbsp;
            jQuery.cookie('trx-popup-has-cache', 'true', { expires: trx_popup_interval });
        });
    } else {
        jQuery.removeCookie('trx-popup-has-cache')
    }

    if ( jQuery.cookie('trx-popup-has-cache') == 'true' ) {
        trx_popup.hide();
    } else {
        jQuery(".trx_popup.publish").show();
    }
}</pre></body></html>