about summary refs log tree commit diff stats
path: root/app/assets/javascripts/main/comments.coffee
blob: 08aa794e884d78260f39f9b179e53dda703997bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
comments_ready = ->
  $(".comment-reply-to").click ->
    $("#comment_reply_to_id").val($(this).data("commentId"))
    $("#comment-reply-msg .comment-reply-author").text($(this).data("commentAuthor"))
    $("#comment-reply-msg").show()
    return false

  $(".comment-reply-cancel").click ->
    $("#comment_reply_to_id").val("")
    $("#comment-reply-msg").hide()
    return false

$(document).on('turbolinks:load', comments_ready)