Advertisement
eerrtt

komenty

Jul 7th, 2014
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. <div class="data-list">
  2. <ul class="media-list mt-18">
  3. {{#comments}}
  4. <li class="media {{#featured}}featured{{/featured}}">
  5. <div class="media-body">
  6. <h1 class="media-heading-1">{{author}} <span class="data-1">{{created_at_formatted}}</span></h1>
  7. <p class="media-heading-2">
  8. {{comment}}
  9. </p>
  10. </div>
  11. </li>
  12. {{/comments}}
  13. {{^comments}}
  14. <div class="alert alert-info">Brak kometarzy</div>
  15. {{/comments}}
  16. </ul>
  17. </div>
  18. #comments .media {
  19. padding: 10px 15px;
  20. margin: 0;
  21. border-bottom: 1px solid #000;
  22. }
  23.  
  24.  
  25. #comments .featured {
  26. border-bottom: 0;
  27. background: #f28725;
  28. }
  29. #comments .featured .media-heading-1,
  30. #comments .featured .media-heading-2,
  31. #comments .featured .data-1{
  32. color: #FFF;
  33. }
  34.  
  35.  
  36. function renderComments(data){
  37. var comments = [];
  38. for(i in data){
  39. var comment = data[i];
  40. if(comment.featured == 1){
  41. comment.featured = true;
  42. } else comment.featured = false;
  43. comments.push(comment);
  44. }
  45. var html = $(Mustache.to_html(templates.commentsViewTemplate, {
  46. comments: comments, base_url: base_url
  47. }));
  48. $('#comments-list').html(html);
  49.  
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement