Skip to content

Commit

Permalink
Apply validation for checkboxes, closes woocommerce#11360
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiosanches committed Jul 5, 2016
1 parent 268d0b2 commit 41f3deb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/js/frontend/checkout.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
Expand Down
Loading

0 comments on commit 41f3deb

Please sign in to comment.