Files
grecia/app/views/legislation/annotations/comments.js.erb
2017-01-20 18:28:15 +01:00

13 lines
326 B
Plaintext

$("#comments-box").html("<%= j render('comments_box', annotation: @annotation) %>").show();
$('a.publish-comment').on({
click: function(e) {
e.preventDefault();
$('a.publish-comment').hide();
$('#js-comment-form-annotation').toggle();
$('#js-comment-form-annotation textarea').focus();
return;
}
});