Commit e09d112e374e803dc147e8107debe83e1a9026e2
1 parent
13f485f7
Exists in
master
and in
5 other branches
fixed checkValidity
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
js/main.js
... | ... | @@ -1338,7 +1338,7 @@ define(['jquery', 'handlebars', 'fastclick', 'proposal_app', 'handlebars_helpers |
1338 | 1338 | |
1339 | 1339 | if(hasError){ |
1340 | 1340 | |
1341 | - if ($signupForm[0].checkValidity()) { // force check of HTML5 validation | |
1341 | + if (! $signupForm[0].checkValidity()) { // force check of HTML5 validation | |
1342 | 1342 | e.preventDefault(); |
1343 | 1343 | |
1344 | 1344 | var messageErrors = []; | ... | ... |