| Server IP : 188.114.96.2 / Your IP : 104.23.197.231 Web Server : Apache/2.4.59 (Debian) System : Linux EDL-STRETCH 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64 User : edlftp ( 1002) PHP Version : 7.4.33 Disable Function : 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_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/nicolasj/www/blog.ecoledelangues.be/wp-content/plugins/wpmudev-updates/shared-ui/ |
Upload File : |
jQuery(function() {
var el_notice, msg_id = el_notice, btn_dismiss;
// Display the notice after the page was loaded.
function initialize() {
if (jQuery(".frash-notice:visible").length) {
// Free plugin already displayed a notification...
return;
}
if ( jQuery(".frash-notice.active").length) {
// Some other premium plugin already displayed a notification...
return;
}
el_notice = jQuery(".frash-notice");
msg_id = el_notice.find("input[name=msg_id]").val();
btn_dismiss = el_notice.find(".frash-notice-dismiss");
// Mark this notification "active" before it's visible to avoid duplicates.
el_notice.addClass("active");
// Dismiss the notice without any action.
btn_dismiss.click(function(ev) {
ev.preventDefault();
notify_wordpress("wdev_notice_dismiss", btn_dismiss.data("msg"));
});
// Display the notification.
el_notice.fadeIn(500);
}
// Hide the notice after a CTA button was clicked
function remove_notice() {
el_notice.fadeTo(100 , 0, function() {
el_notice.slideUp(100, function() {
el_notice.remove();
});
});
}
// Notify WordPress about the users choice and close the message.
function notify_wordpress(action, message) {
var ajax_data = {};
if ('0' !== msg_id) {
el_notice.attr("data-message", message);
el_notice.addClass("loading");
ajax_data.msg_id = msg_id;
ajax_data.action = action;
jQuery.post(
window.ajaxurl,
ajax_data,
remove_notice
);
} else {
remove_notice();
}
}
// Premium version uses a HIGHER delay than the notice in free plugins.
// So if any free plugin display a notice it will be displayed instead of
// the premium notice.
//
// 1050 ... free notice uses 500 delay + 500 fade in + 20 to let browser render the changes.
// So after 1020ms the free notice is considered "visible".
window.setTimeout(initialize, 1050);
});