Re-render and replace the whole forum post with AJAX when a forum post is deleted or undeleted. This is easier now that forum posts are componentized.
2 lines
152 B
Plaintext
2 lines
152 B
Plaintext
$("#forum_post_<%= @forum_post.id %>").replaceWith("<%= j render(ForumPostComponent.new(forum_post: @forum_post, current_user: CurrentUser.user)) %>");
|