zulip/zephyr/jstemplates/actions_popover_content.html

16 lines
444 B
HTML
Raw Normal View History

{{! Contents of the "message actions" popup }}
<ul class="nav nav-list actions_popover">
<li>
<a onclick="respond_to_message();">
<i class="icon-share-alt"></i> Reply to this {{#if is_stream}}stream{{else}}private message{{/if}}
</a>
</li>
{{#unless is_private}}
<li>
<a onclick="respond_to_message('personal');">
<i class="icon-user"></i> Reply to {{sender_full_name}} only
</a>
</li>
{{/unless}}
</ul>