#Actions with ajax http://code.tutsplus.com/tutorials/using-unobtrusive-javascript-and-ajax-with-rails-3--net-15243 ##Destroy Для того, чтобы удалить что-либо без перезагрузки страницы следует:
-
добавить remote: true к хелперу link_to во вью:
..\blog_web_application\app\views\comments\_comment.html.haml = link_to "Destroy", user_post_comment_path(:post_id => @post, :parent_id => comment), :confirm => "Are you sure?", :method => :delete, remote: true
if comment.user_id == current_user.id || comment.post.user_id == current_user.id