oont-contents/plugins/wordfence/js/wfdashboard.1742403948.js
2025-04-06 08:34:48 +02:00

15 lines
365 B
JavaScript

if (!window['WFDash']) {
window['WFDash'] = {
updateNotificationCount: function(count) {
(function($) {
$('.wf-notification-count-value').html(count);
if (count == 0) {
$('.wf-notification-count-container').addClass('wf-hidden');
}
else {
$('.wf-notification-count-container').removeClass('wf-hidden');
}
})(jQuery);
}
}
}