Files
zulip/zephyr/static/templates/sidebar_stream_actions.handlebars
Luke Faraone f9b82f2ab8 Add a dropdown menu to the sidebar.
This allows you to compose to a stream, narrow, or hide it from your home
view.

(imported from commit 183eb85af3401de592bae61a61409ffcc116eb45)
2013-05-20 23:29:52 -04:00

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>