mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
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>
10 lines
302 B
Handlebars
10 lines
302 B
Handlebars
{{#if msg/local_edit_timestamp}}
|
|
<div class="message_edit_notice auto-select" title="{{#tr}}Edited ({last_edit_timestr}){{/tr}}">
|
|
({{t "SAVING" }})
|
|
</div>
|
|
{{else}}
|
|
<div class="message_edit_notice auto-select" title="{{#tr}}Edited ({last_edit_timestr}){{/tr}}">
|
|
({{t "EDITED" }})
|
|
</div>
|
|
{{/if}}
|