mirror of
https://github.com/zulip/zulip.git
synced 2025-11-10 17:07:07 +00:00
This allows you to compose to a stream, narrow, or hide it from your home view. (imported from commit 183eb85af3401de592bae61a61409ffcc116eb45)
28 lines
686 B
Handlebars
28 lines
686 B
Handlebars
{{! Contents of the "message actions" popup }}
|
|
<ul class="nav nav-list actions_popover" data-name="{{ stream.name }}">
|
|
<li>
|
|
<a class="narrow_to_stream">
|
|
<i class="icon-vector-bullhorn"></i>
|
|
Narrow to this stream.
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a class="toggle_home">
|
|
{{#if stream.in_home_view}}
|
|
<i class="icon-vector-minus-sign"></i>
|
|
Hide this stream from your home view.
|
|
{{else}}
|
|
<i class="icon-vector-plus-sign"></i>
|
|
Show this stream in your home view.
|
|
{{/if}}
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a class="compose_to_stream">
|
|
<i class="icon-vector-edit"></i>
|
|
Compose a new message on this stream.
|
|
</a>
|
|
</li>
|
|
|
|
</ul>
|