mirror of
https://github.com/zulip/zulip.git
synced 2025-11-09 08:26:11 +00:00
I apparently screwed up my check for whether we were using the old data-name field, and switching the other stuff to use data-id (which is needed for the color stuff) is probably not worth it. (imported from commit 1b925bbcca5beb5dc9dadbcf703cbb07ca511a0c)
32 lines
959 B
Handlebars
32 lines
959 B
Handlebars
{{! Contents of the "message actions" popup }}
|
|
<ul class="nav nav-list streams_popover" data-id="{{ stream.id }}" data-name="{{ stream.name }}">
|
|
<li>
|
|
<a class="narrow_to_stream">
|
|
<i class="icon-vector-bullhorn"></i>
|
|
Narrow to stream {{stream.name}}
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a class="toggle_home">
|
|
{{#if stream.in_home_view}}
|
|
<i class="icon-vector-minus-sign"></i>
|
|
Hide stream {{stream.name}} from your home view
|
|
{{else}}
|
|
<i class="icon-vector-plus-sign"></i>
|
|
Show stream {{stream.name}} in your home view
|
|
{{/if}}
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a class="compose_to_stream">
|
|
<i class="icon-vector-edit"></i>
|
|
Compose a message to stream {{stream.name}}
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<span class="colorpicker-container"><input stream_name="{{stream.name}}" class="colorpicker" type="text" value="{{stream.color}}" /></span>
|
|
<a class="custom_color">Choose custom color</a>
|
|
</li>
|
|
|
|
</ul>
|