otwarchive-symphonyarchive/app/views/comments/show_comments.js.erb
2026-03-11 22:22:11 +00:00

11 lines
922 B
Text

/* replace the top "Comments" link on works with "Hide Comments" */
$j("#show_comments_link_top").html("<%= escape_javascript(show_hide_comments_link(@commentable, :link_type => "hide")) %>");
/* replace the top "Comments (#)" link with "Hide Comments (#)" */
$j("#show_comments_link").html("<%= escape_javascript(show_hide_comments_link(@commentable, :link_type => "hide", :show_count => true)) %>");
/* load up the comments in their placeholder div */
$j("#comments_placeholder").html("<%= escape_javascript(will_paginate(@comments, {:remote => true})) %>");
$j("#comments_placeholder").append("<%= escape_javascript(render "comments/comment_thread", {:comments => @comments, :depth => 0}) %>");
$j("#comments_placeholder").append("</ol>");
$j("#comments_placeholder").append("<%= escape_javascript(will_paginate(@comments, {:remote => true})) %>");
/* roll down the comments */
$j("#comments_placeholder").slideDown();