Commit a54387401bbaab0a089fac1214657760139a3252

Authored by Daniela Feitosa
2 parents 6978e36d 96c4c8ec

Merge commit 'refs/merge-requests/153' of git://gitorious.org/noosfero/noosfero …

…into merge-requests/153
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 }
... ...