Files
grecia/app/views/legislation/annotations/_comments_box_form.js.erb
2019-03-19 12:16:50 +01:00

16 lines
558 B
Plaintext

$("#comments-box-<%= annotation.id %> a.publish-comment").on({
click: function(e) {
e.preventDefault();
$("a.publish-comment").hide();
$("#js-comment-form-annotation-<%= annotation.id %>").toggle();
$("#js-comment-form-annotation-<%= annotation.id %> textarea").focus();
return;
}
});
<% if comment.errors.any? %>
$("#comments-box-<%= @annotation.id %> a.publish-comment").hide();
$("#js-comment-form-annotation-<%= annotation.id %>").toggle();
$("#js-comment-form-annotation-<%= annotation.id %> textarea").focus();
<% end %>