2016-12-02 13:23:23 +01:00
|
|
|
{{! Contents of the "reaction emoji map" popup }}
|
|
|
|
<div class="reaction-popover">
|
2017-02-15 21:09:42 +01:00
|
|
|
<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}}
|
2017-03-24 02:57:07 +01:00
|
|
|
<div class="reaction-popover-reaction {{#if has_reacted}} reacted {{/if}}" title={{name}} tabindex="0">
|
2017-03-20 22:03:53 +01:00
|
|
|
{{#if is_realm_emoji}}
|
|
|
|
<img src="{{url}}" class="emoji" title= ":{{name}}:" />
|
2017-02-15 21:09:42 +01:00
|
|
|
{{else}}
|
2017-03-20 22:03:53 +01:00
|
|
|
<div class="emoji emoji-{{css_class}}" title= ":{{name}}:" />
|
2017-02-15 21:09:42 +01:00
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
{{/each}}
|
|
|
|
</div>
|
2016-12-02 13:23:23 +01:00
|
|
|
</div>
|