diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2013-01-16 10:45:59 +0000 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2013-01-16 10:45:59 +0000 |
commit | 004ffac63fcc26ea1c3ff70e64a8ab626a09ec25 (patch) | |
tree | e880ec0d889bbe24ddf41674b0d6df9069d47cfd /static-files | |
parent | ce3aa51e2d6452ad324b8a95541b1e33c88ea950 (diff) |
Add parameter *DROP-UNFILTERED* to control whether unauthenticated comments are to be dropped immediately.
Diffstat (limited to 'static-files')
-rw-r--r-- | static-files/js/comment-submission.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/static-files/js/comment-submission.js b/static-files/js/comment-submission.js index 23dae22..2704b0f 100644 --- a/static-files/js/comment-submission.js +++ b/static-files/js/comment-submission.js @@ -53,4 +53,6 @@ jQuery(function($) { } }); $('.spam-detection-info').html("This website uses a <a href=\"http://en.wikipedia.org/w/index.php?title=Hashcash&oldid=417692755\">Hashcash</a>-like proof-of-work system for spam detection."); + $('.comment-form').find('input, textarea').removeAttr('disabled'); //.prop('disabled', false); }); + |