Advertisement
Guest User

Untitled

a guest
Feb 12th, 2016
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. function addComment(author, comment) {
  2. var $comment = $('<div class="comment-line"><b>' + author + ':</b><span class="comment-content">' + comment +'</span></div>');
  3. $('comment-box').append($comment);
  4. notificationToast('It\'s posted!');
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement