otwarchive-symphonyarchive/app/views/comments/delete_comment.js.erb

6 lines
416 B
Text
Raw Permalink Normal View History

2026-03-11 22:22:11 +00:00
/* hide redundant navigation */
$j("#navigation_for_comment_<%= "#{@comment.id}" %>").hide();
/* render the delete confirmation form into its spot, then make it visible */
$j("#delete_comment_placeholder_<%= "#{@comment.id}" %>").html("<%= escape_javascript(render :partial => "comments/confirm_delete", :locals => {:comment => @comment}) %>");
$j("#delete_comment_placeholder_<%= "#{@comment.id}" %>").slideDown();