mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
11 lines
285 B
Handlebars
11 lines
285 B
Handlebars
{{! Typing notifications }}
|
|
<ul id="typing_notification_list">
|
|
{{#if several_users}}
|
|
<li class="typing_notification">{{t "Several people are typing…" }}</li>
|
|
{{else}}
|
|
{{#each users}}
|
|
{{> typing_notification .}}
|
|
{{/each}}
|
|
{{/if}}
|
|
</ul>
|