Files
zulip/static/templates/typing_notifications.hbs
Dinesh dba21d201c typing: Display several people are typing...
Displays "Several people are typing..." when more than 3 users
are typing to avoid typing notifications in streams being too noisy.

A side effect is it shows the same message in pms too.
2021-04-07 00:17:30 -07:00

11 lines
279 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>