Apply validation for checkboxes, closes #11360

This commit is contained in:
Claudio Sanches 2016-07-05 18:29:17 -03:00
parent 268d0b2241
commit 41f3deb665
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ jQuery( function( $ ) {
this.$checkout_form.on( 'submit', this.submit );
// Inline validation
this.$checkout_form.on( 'blur change', '.input-text, select', this.validate_field );
this.$checkout_form.on( 'blur change', '.input-text, select, input:checkbox', this.validate_field );
// Manual trigger
this.$checkout_form.on( 'update', this.trigger_update_checkout );

File diff suppressed because one or more lines are too long