Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publisher's question_4 and question_5 do not accept line breaks #10

Closed
petkivim opened this issue Aug 16, 2016 · 1 comment
Closed

Publisher's question_4 and question_5 do not accept line breaks #10

petkivim opened this issue Aug 16, 2016 · 1 comment

Comments

@petkivim
Copy link
Owner

If question_4 or question_5 contain line breaks, they do not pass client side validation. Validator must be updated:

regex = /^.{0,200}$/;
return regex.test(value);

=>

return value.length <= 200;
petkivim added a commit that referenced this issue Aug 20, 2016
Added possibility to use line breaks in question_4 and question_5
fields. #10
@petkivim
Copy link
Owner Author

Done.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant