????JFIF??x?x????'
| Server IP : 104.21.30.238  /  Your IP : 216.73.216.153 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /././home/./tempvsty/./dchs84reunion.com/wp-content/plugins/sucuri-scanner/inc/js/ | 
| Upload File : | 
/* global jQuery */
/* jshint ignore:start */
function sucuriscanAlertClose(id) {
    var element = document.getElementById('sucuriscan-alert-' + id);
    element.parentNode.removeChild(element);
}
/* jshint ignore:end */
jQuery(document).ready(function($) {
    $('.sucuriscan-container').on('click', '.sucuriscan-modal-button', function(event) {
        event.preventDefault();
        var modalid = $(this).data('modalid');
        $('div.' + modalid + '-modal').removeClass('sucuriscan-hidden');
    });
    $('.sucuriscan-container').on('click', '.sucuriscan-overlay, .sucuriscan-modal-close', function(event) {
        event.preventDefault();
        $('.sucuriscan-overlay').addClass('sucuriscan-hidden');
        $('.sucuriscan-modal').addClass('sucuriscan-hidden');
    });
    $('.sucuriscan-container').on('click', '.sucuriscan-show-more', function(event) {
        event.preventDefault();
        var button = $(this);
        var target = button.attr('data-target');
        var status = button.attr('data-status');
        if (status === 'more') {
            button.attr('data-status', 'less');
            $(target).removeClass('sucuriscan-hidden');
            button.find('.sucuriscan-show-more-title').html('Show Less Info');
        } else {
            button.attr('data-status', 'more');
            $(target).addClass('sucuriscan-hidden');
            button.find('.sucuriscan-show-more-title').html('Show More Info');
        }
    });
    if ($('.sucuriscan-tabs').length) {
        var hiddenState = 'sucuriscan-hidden';
        var visibleState = 'sucuriscan-visible';
        var activeState = 'sucuriscan-tab-active';
        var locationHash = location.href.split('#')[1];
        $('.sucuriscan-container').on('click', '.sucuriscan-tabs-buttons a', function(event) {
            event.preventDefault();
            var button = $(this);
            var uniqueid = button.attr('href').split('#')[1];
            if (!uniqueid) {
                return;
            }
            var container = $('.sucuriscan-tabs-containers > #sucuriscan-tabs-' + uniqueid);
            if (!container.length) {
                return;
            }
            var rawurl = location.href.replace(location.hash, '');
            var newurl = rawurl + '#' + uniqueid;
            window.history.pushState({}, document.title, newurl);
            $('.sucuriscan-tabs-buttons a').removeClass(activeState);
            $('.sucuriscan-tabs-containers > div').addClass(hiddenState);
            button.addClass(activeState);
            container.addClass(visibleState);
            container.removeClass(hiddenState);
        });
        $('.sucuriscan-tabs-containers > div').addClass(hiddenState);
        if (locationHash !== undefined) {
            $('.sucuriscan-tabs-buttons a').each(function(e, button) {
                var buttonHash = $(button)
                    .attr('href')
                    .split('#')[1];
                if (buttonHash === locationHash) {
                    $(button).trigger('click');
                }
            });
        } else {
            $('.sucuriscan-tabs-buttons li:first-child a').trigger('click');
        }
    }
    $('.sucuriscan-container').on('mouseover', '.sucuriscan-tooltip', function() {
        var element = $(this);
        var content = element.attr('content');
        if (!content) {
            return;
        }
        /* create instance of tooltip container */
        var tooltip = $('<div>', { class: 'sucuriscan-tooltip-object' });
        if (element.attr('tooltip-width')) {
            var customWidth = element.attr('tooltip-width');
            tooltip.css('width', customWidth);
        }
        /* interpret HTML code as is; careful with XSS */
        if (element.attr('tooltip-html') === 'true') {
            tooltip.html(content);
        } else {
            tooltip.text(content);
        }
        element.append(tooltip);
        var arrowHeight = 10; /* border width */
        var tooltipHeight = tooltip.outerHeight();
        tooltip.css('top', (tooltipHeight + arrowHeight) * -1);
        var elementWidth = element.outerWidth();
        var tooltipWidth = tooltip.outerWidth();
        if (elementWidth === tooltipWidth) {
            tooltip.css('left', 0);
        } else if (elementWidth > tooltipWidth) {
            tooltip.css('left', (elementWidth - tooltipWidth) / 2);
        } else if (elementWidth < tooltipWidth) {
            tooltip.css('left', (tooltipWidth - elementWidth) / 2 * -1);
        }
    });
    $('.sucuriscan-container').on('mouseout', '.sucuriscan-tooltip', function() {
        $(this)
            .find('.sucuriscan-tooltip-object')
            .remove();
    });
    $('.sucuriscan-container').on('click', 'button.sucuriscan-show-section', function(event) {
        event.preventDefault();
        var button = $(this);
        var current = button.text();
        var onText = button.attr('on');
        var offText = button.attr('off');
        var section = button.attr('section');
        if (current === onText) {
            $('#' + section).removeClass('sucuriscan-hidden');
            button.html(offText);
        } else {
            $('#' + section).addClass('sucuriscan-hidden');
            button.html(onText);
        }
    });
});