Skip to content

Commit

Permalink
Merge pull request #541 from IgorNadj/fix-ul-jqueryvalidate
Browse files Browse the repository at this point in the history
FIX: jquery validate attempting to validate ul as input
  • Loading branch information
robbieaverill authored May 8, 2017
2 parents dc530c0 + 262cbf7 commit 802c750
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion javascript/UserForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 802c750

Please sign in to comment.