mirror of
https://github.com/discourse/discourse.git
synced 2025-05-31 09:37:57 +08:00

This commit allows the user to set their preference vis-a-vis the chat icon in the header of the page. There are three options: - All New (default) - This maintains the existing behaviour where all new messages in the channel show a blue dot on the icon - Direct Messages and Mentions - Only show the green dot on the icon when you are directly messaged or mentioned, the blue dot is never shown - Never - Never show any dot on the chat icon, for those who want tractor-beam-laser-focus
9 lines
311 B
Handlebars
9 lines
311 B
Handlebars
{{#if this.showUrgentIndicator}}
|
|
<div class="chat-channel-unread-indicator urgent">
|
|
<div class="number-wrap">
|
|
<div class="number">{{this.chatChannelsManager.unreadUrgentCount}}</div>
|
|
</div>
|
|
</div>
|
|
{{else if this.showUnreadIndicator}}
|
|
<div class="chat-channel-unread-indicator"></div>
|
|
{{/if}} |