| Server IP : 43.130.17.34 / Your IP : 216.73.217.6 Web Server : nginx/1.28.0 System : Linux VM-4-12-opencloudos 6.6.92-34.1.oc9.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 25 21:32:13 CST 2025 x86_64 User : www ( 1000) PHP Version : 8.0.26 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/yespkg.com/wp-content/plugins/google-analytics-for-wordpress/assets/js/ |
Upload File : |
jQuery(document).ready(function ($) {
/**
* Dismissable Notices
* - Sends an AJAX request to mark the notice as dismissed
*/
$('div.monsterinsights-notice').on('click', 'button.notice-dismiss', function (e) {
e.preventDefault();
$(this).closest('div.monsterinsights-notice').fadeOut();
// If this is a dismissible notice, it means we need to send an AJAX request
if ($(this).parent().hasClass('is-dismissible')) {
$.post(
monsterinsights_admin_common.ajax,
{
action: 'monsterinsights_ajax_dismiss_notice',
nonce: monsterinsights_admin_common.dismiss_notice_nonce,
notice: $(this).parent().data('notice')
},
function (response) {
},
'json'
);
}
});
$('div.wp-menu-name > .monsterinsights-menu-notification-indicator').click(function (event) {
event.preventDefault();
event.stopPropagation();
location.href = monsterinsights.reports_url + '&open=monsterinsights_notification_sidebar';
});
});
var submenu_item = document.querySelector('.monsterinsights-upgrade-submenu');
if (null !== submenu_item) {
var anchorTag = submenu_item.parentNode;
if ( anchorTag ) {
anchorTag.setAttribute("target", "_blank");
anchorTag.setAttribute("rel", "noopener");
var li = anchorTag.parentNode;
if (li) {
li.classList.add('monsterinsights-submenu-highlight');
}
}
}
var automated_submenu_item = document.querySelector('.monsterinsights-automated-submenu');
if (null !== automated_submenu_item) {
var anchorTag = automated_submenu_item.parentNode;
if ( anchorTag ) {
anchorTag.setAttribute("target", "_blank");
anchorTag.setAttribute("rel", "noopener");
anchorTag.setAttribute("style", "color:#1da867");
}
}