diff options
author | Struan Donald <struan@exo.org.uk> | 2013-08-16 17:35:03 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2013-08-16 17:35:03 +0100 |
commit | 9a449990e3350e7d731261601e4766c73b732d1a (patch) | |
tree | 595864e64e2f8b4917b6a218e23fdf717f38db2a | |
parent | 5103db313586e727e325319fc696d56c89fc4d4a (diff) |
Hide errors on submit login password page
Otherwise they are still there if you are asked to confirm your name
-rw-r--r-- | src/js/views/submit.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/js/views/submit.js b/src/js/views/submit.js index f060b7b..705f8e6 100644 --- a/src/js/views/submit.js +++ b/src/js/views/submit.js @@ -328,6 +328,8 @@ }, beforeSubmit: function() { + $('#errors').hide(); + $('p.top').show(); $('#report').focus(); if ( $('#form_name').val() ) { this.model.set('submit_clicked', 'submit_register'); |