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

6 lines
465 B
Text
Raw Normal View History

2026-03-11 22:22:11 +00:00
/* hide redundant navigation */
$j("#navigation_for_comment_<%= "#{@commentable.id}" %>").hide();
/* render the form into the spot for it on the page */
$j("#add_comment_reply_placeholder_<%= "#{@commentable.id}" %>").html("<%= escape_javascript(render :partial => "comments/comment_form", :locals => {:comment => @comment, :commentable => @commentable, :button_name => ts("Comment")}) %>");
$j("#add_comment_reply_placeholder_<%= "#{@commentable.id}" %>").show();