Files
zulip/static/templates/all_messages_sidebar_actions.hbs
Anders Kaseorg 5fed442bb1 templates: Remove context argument from {{#tr}} block helper.
It only had one nontrivial use, and it’s easily replaced using the
builtin {{#with}} block helper.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
2021-04-13 18:59:46 -07:00

11 lines
367 B
Handlebars

{{! Contents of the "all messages sidebar" popup }}
<ul class="nav nav-list">
<li>
{{! tabindex="0" Makes anchor tag focusable. Needed for keyboard support. }}
<a tabindex="0" id="mark_all_messages_as_read">
<i class="fa fa-book" aria-hidden="true"></i>
{{#tr}}Mark all messages as read{{/tr}}
</a>
</li>
</ul>