mirror of https://github.com/zulip/zulip.git
19 lines
758 B
Handlebars
19 lines
758 B
Handlebars
{{! Contents of the "reaction emoji map" popup }}
|
|
<div class="reaction-popover">
|
|
<div class="reaction-popover-top">
|
|
<input class="reaction-popover-filter" type="text" autofocus placeholder={{t 'Search' }} />
|
|
<i class="icon-vector-search"></i>
|
|
</div>
|
|
<div class="reaction-popover-emoji-map" data-message-id="{{message_id}}">
|
|
{{#each emojis}}
|
|
<div class="reaction-popover-reaction {{#if has_reacted}} reacted {{/if}}" title={{name}} tabindex="0">
|
|
{{#if is_realm_emoji}}
|
|
<img src="{{url}}" class="emoji" title= ":{{name}}:" />
|
|
{{else}}
|
|
<div class="emoji emoji-{{css_class}}" title= ":{{name}}:" />
|
|
{{/if}}
|
|
</div>
|
|
{{/each}}
|
|
</div>
|
|
</div>
|