UI is not modified much besides removing the border-bottom, and using only message body. However instead of having a fix template, this is all automatically generated and random, resulting in a more natural experience.
15 lines
513 B
Handlebars
15 lines
513 B
Handlebars
<div class="chat-skeleton -animation">
|
|
{{#each this.placeholders as |rows|}}
|
|
<div class="chat-skeleton__body">
|
|
<div class="chat-skeleton__message">
|
|
<div class="chat-skeleton__message-avatar"></div>
|
|
<div class="chat-skeleton__message-poster"></div>
|
|
<div class="chat-skeleton__message-content">
|
|
{{#each rows as |row|}}
|
|
<div class="chat-skeleton__message-msg" style={{row}}></div>
|
|
{{/each}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{/each}}
|
|
</div> |