Commit a4abc843a6a4bb53e7dcf64cee0da8c171119def

Authored by Daniela Feitosa
2 parents 16b311fa 17bdd3fd

Merge branch 'merge-requests/153' into stable

plugins/require_auth_to_comment/public/hide_comment_form.js
... ... @@ -3,6 +3,7 @@
3 3 if (data.login || $('meta[name=profile.allow_unauthenticated_comments]').length > 0) {
4 4 $('.post-comment-button').show();
5 5 $('#page-comment-form').show();
  6 + $('.comment-footer').show();
6 7 }
7 8 });
8 9 })(jQuery);
... ...
plugins/require_auth_to_comment/public/style.css
1   -.post-comment-button, #page-comment-form {
  1 +.post-comment-button, #page-comment-form, .comment-footer {
2 2 display: none;
3 3 }
... ...