OLD: form validation is presented to user

This commit is contained in:
boyska 2015-05-04 13:32:44 +02:00
parent dc6c039c7c
commit 3687623efa

View file

@ -106,6 +106,7 @@ $(function() {
var check = form.check();
if(check.length > 0) {
console.log("Errors in form", check);
error_dialog(check.map(function(err) { return err.msg; }).join('\n'));
return;
}
click($('#download'));