Skip to content

Commit

Permalink
fixed messages mistyping
Browse files Browse the repository at this point in the history
  • Loading branch information
Paolo Iuculano committed Aug 31, 2016
1 parent 4049663 commit e2d924f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/js/advance/validator-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ function jobNameValidator(value) {
if (!value) {
response.isValid = false;
response.notification.type = 'error';
response.notification.msg = 'Il valore deve essere inserito';
response.notification.title = 'Valore obbligatorio';
response.notification.msg = 'Value must be inserted';
response.notification.title = 'Requested Value';
} else if (value.length < 10) {
response.isValid = false;
response.notification.type = 'error';
response.notification.msg = 'Il valore deve essere così';
response.notification.title = 'Valore non ammissibile';
response.notification.msg = 'Value must have 10+ characters';
response.notification.title = 'Invalid Value';
}
return response;
}
Expand Down

0 comments on commit e2d924f

Please sign in to comment.