This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/plugins/chat/assets/javascripts/discourse/components/chat-header-icon.hbs
2022-12-28 13:11:12 +00:00

21 lines
526 B
Handlebars

{{#if (and this.chatStateManager.isFullPageActive this.site.desktopView)}}
<span class={{concat-class "icon" (if this.isActive "active")}}>
{{d-icon "comment"}}
{{#unless this.currentUserInDnD}}
<ChatHeaderIconUnreadIndicator />
{{/unless}}
</span>
{{else}}
<a
href={{this.href}}
tabindex="0"
class={{concat-class "icon" (if this.isActive "active")}}
>
{{d-icon "comment"}}
{{#unless this.currentUserInDnD}}
<ChatHeaderIconUnreadIndicator />
{{/unless}}
</a>
{{/if}}