Files
nairobi/app/assets/javascripts/comments.js.coffee
2015-07-27 22:50:38 +02:00

13 lines
262 B
CoffeeScript

jQuery ->
toggle_comment = (id) ->
$("#js-comment-form-#{id}").toggle()
ready = ->
$('.js-add-comment-link').click ->
id = $(this).data().id
toggle_comment(id)
false
$(document).ready(ready)
$(document).on('page:load', ready)