Files
danbooru/app/views/comments/index_for_post.js.erb
2021-01-16 01:02:42 -06:00

6 lines
412 B
Plaintext

$("#threshold-comments-notice-for-<%= @post.id %>").hide();
var current_comment_section = $("div.comments-for-post[data-post-id=<%= @post.id %>] div.list-of-comments");
current_comment_section.html("<%= j render_comment_list(@comments, context: :index_by_post, moderation_reports: @post.moderation_reports.visible(CurrentUser.user).recent) %>");
$(window).trigger("danbooru:index_for_post", [<%= @post.id %>]);