Facebook
From carol, 3 Years ago, written in HTML5.
This paste is a reply to chatbox from carol - view diff
Embed
Download Paste or View Raw
Hits: 91
  1. <!-- item will be appened to this layout -->
  2. <div id="log" class="sl__chat__layout">
  3. </div>
  4.  
  5. <!-- chat item -->
  6. <script type="text/template" id="chatlist_item">
  7.   <div data-from="{from}" data-id="{messageId}">
  8.     <span class="meta" style="background: {color}">
  9.       <span class="badges">
  10.       </span>
  11.       <span class="name">{from}</span>
  12.     </span>
  13.  
  14.     <span class="message">
  15.       {message}
  16.     </span>
  17.   </div>