allowing favicon updating to be disabled via client side hook

v1.18.x
Julian Lam 9 years ago
parent a213daf2e3
commit f1ed3ad659

@ -122,10 +122,15 @@ define('notifications', ['sounds', 'translator', 'components'], function(sound,
notifIcon.toggleClass('unread-count', count > 0); notifIcon.toggleClass('unread-count', count > 0);
notifIcon.attr('data-content', count > 20 ? '20+' : count); notifIcon.attr('data-content', count > 20 ? '20+' : count);
Tinycon.setBubble(count); var payload = {
$(window).trigger('action:notification.updateCount', { count: count,
count: count updateFavicon: true
}); };
$(window).trigger('action:notification.updateCount', payload);
if (payload.updateFavicon) {
Tinycon.setBubble(count);
}
}; };
Notifications.markAllRead = function() { Notifications.markAllRead = function() {

Loading…
Cancel
Save