diff --git a/plugins/require_auth_to_comment/public/hide_comment_form.js b/plugins/require_auth_to_comment/public/hide_comment_form.js index 01c5252..40ac03a 100644 --- a/plugins/require_auth_to_comment/public/hide_comment_form.js +++ b/plugins/require_auth_to_comment/public/hide_comment_form.js @@ -4,7 +4,7 @@ $('.post-comment-button').livequery(function() { $(this).show(); }); - $('#page-comment-form').livequery(function() { + $('.page-comment-form').livequery(function() { $(this).show(); }); $('.comment-footer').livequery(function() { diff --git a/plugins/require_auth_to_comment/public/style.css b/plugins/require_auth_to_comment/public/style.css index 2c63657..9d3abde 100644 --- a/plugins/require_auth_to_comment/public/style.css +++ b/plugins/require_auth_to_comment/public/style.css @@ -1,3 +1,3 @@ -.post-comment-button, #page-comment-form, .comment-footer { +.post-comment-button, .page-comment-form, .comment-footer { display: none; } -- libgit2 0.21.2