diff options
-rw-r--r-- | view/tpl/notifications_widget.tpl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/view/tpl/notifications_widget.tpl b/view/tpl/notifications_widget.tpl index 30547da97..0b3b463bc 100644 --- a/view/tpl/notifications_widget.tpl +++ b/view/tpl/notifications_widget.tpl @@ -319,6 +319,10 @@ }); } + if (sse_sys_only) { + return; + } + let primary_notifications = ['dm', 'home', 'intros', 'register', 'notify', 'files']; let secondary_notifications = ['network', 'forums', 'all_events', 'pubs']; let all_notifications = primary_notifications.concat(secondary_notifications); @@ -329,7 +333,6 @@ var count = Number(obj[type].count); - if(obj[type].count) { $('.' + type + '-button').fadeIn(); if(replace || followup) { |