Advertisement
Guest User

Untitled

a guest
Nov 19th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. <div
  2. class="chat-message"
  3. [@slideUp]
  4. [class.chat-message-received]="message.type === 'received'"
  5. [class.chat-message-sent]="message.type === 'sent'"
  6. [@fadeIn]
  7. >
  8. <div>
  9. <app-chat-widget-avatar
  10. [photoWidth]="40"
  11. [photoHeight]="40"
  12. *ngIf="message.type === 'received'"
  13. [photo]="consultant.photo"
  14. class="chat-message-from-avatar"
  15. ></app-chat-widget-avatar>
  16.  
  17. <div
  18. *ngIf="!message.isURL"
  19. [innerHTML]="message.text | emojify | linkify"
  20. class="chat-message-text"
  21. ></div>
  22. <div *ngIf="message.isURL" class="chat-message-text">
  23. <img
  24. style="width: 100%;
  25. height: 100%;"
  26. src="{{ message.text }}"
  27. />
  28. </div>
  29. </div>
  30. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement