PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/ $#$#$#

Dir : /home/trave494/demo2024feb.kerihosting.com/wp-content/plugins/secure-wordpress/res/js/
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
IP: 209.182.202.254
Choose File :

Url:
Dir : /home/trave494/demo2024feb.kerihosting.com/wp-content/plugins/secure-wordpress/res/js/wsd-util.js

/**
 * This function will bind the click event for entry items in the dashboard
 * that will toggle the entry description row
 */
function wsdplugin_bindEntryClick($)
{
    $('.entry-event').each(function(){
        var self = $(this);
        self.click(function(){
            var e = self.next('tr.entry-description');
            e.fadeToggle('fast','linear');
        });
    });
}
/**
 * Update the querystring param if found otherwise add it
 * @param uri
 * @param key
 * @param value
 * @returns string  The updated uri
 */
function updateQueryStringParam(uri, key, value) {
    var re = new RegExp("([?|&])" + key + "=.*?(&|$)", "i"),separator = uri.indexOf('?') !== -1 ? "&" : "?";
    if (uri.match(re)) { return uri.replace(re, '$1' + key + "=" + value + '$2'); }else { return uri + separator + key + "=" + value; }
}