mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-12-27 02:40:39 +01:00
allowing favicon updating to be disabled via client side hook
This commit is contained in:
@@ -122,10 +122,15 @@ define('notifications', ['sounds', 'translator', 'components'], function(sound,
|
||||
notifIcon.toggleClass('unread-count', count > 0);
|
||||
notifIcon.attr('data-content', count > 20 ? '20+' : count);
|
||||
|
||||
Tinycon.setBubble(count);
|
||||
$(window).trigger('action:notification.updateCount', {
|
||||
count: count
|
||||
});
|
||||
var payload = {
|
||||
count: count,
|
||||
updateFavicon: true
|
||||
};
|
||||
$(window).trigger('action:notification.updateCount', payload);
|
||||
|
||||
if (payload.updateFavicon) {
|
||||
Tinycon.setBubble(count);
|
||||
}
|
||||
};
|
||||
|
||||
Notifications.markAllRead = function() {
|
||||
|
||||
Reference in New Issue
Block a user