mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-04-01 18:21:02 +02:00
closes #4144
This commit is contained in:
@@ -139,7 +139,7 @@ define('notifications', ['sounds', 'translator', 'components'], function(sound,
|
||||
}
|
||||
|
||||
notifIcon.toggleClass('unread-count', count > 0);
|
||||
notifIcon.attr('data-content', count > 20 ? '20+' : count);
|
||||
notifIcon.attr('data-content', count > 99 ? '99+' : count);
|
||||
|
||||
var payload = {
|
||||
count: count,
|
||||
|
||||
Reference in New Issue
Block a user