You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
365 B

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