Files
medicalalert-web-reloaded/wp/wp-content/plugins/wordfence/js/wfdashboard.1685552791.js
Rachit Bhargava 5d0f0734d8 first commit
2023-07-21 17:12:10 -04:00

16 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);
}
}
}