Merge pull request #541 from IgorNadj/fix-ul-jqueryvalidate

FIX: jquery validate attempting to validate ul as input
This commit is contained in:
Robbie Averill 2017-05-08 18:20:13 +12:00 committed by GitHub
commit 802c750a77

View File

@ -77,7 +77,7 @@ jQuery(function ($) {
* Default options for step validation. These get extended in main().
*/
UserForm.prototype.validationOptions = {
ignore: ':hidden',
ignore: ':hidden,ul',
errorClass: 'error',
errorElement: 'span',
errorPlacement: function (error, element) {