28 lines
481 B
Handlebars
28 lines
481 B
Handlebars
<div id="chat-progress-bar-container"></div>
|
|
|
|
<ChatVh />
|
|
|
|
{{#if this.chat.sidebarActive}}
|
|
<div class="full-page-chat teams-sidebar-on">
|
|
{{outlet}}
|
|
</div>
|
|
{{else}}
|
|
<div
|
|
class={{concat-class
|
|
"full-page-chat"
|
|
(if
|
|
this.shouldUseCoreSidebar
|
|
"full-page-chat-sidebar-enabled"
|
|
)
|
|
}}
|
|
>
|
|
{{#if this.shouldUseChatSidebar}}
|
|
<ChannelsList />
|
|
{{/if}}
|
|
|
|
<div id="main-chat-outlet">
|
|
{{outlet}}
|
|
</div>
|
|
</div>
|
|
{{/if}}
|