#1245 closed bug (fixed)
Bug with submitHandler
Reported by: | nikola | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.1.3 |
Component: | plugin | Version: | 1.1.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
wtf is this!!!
243 if ( validator.form() ) { 244 return validator.settings.submitHandler 245 && validator.settings.submitHandler( validator.currentForm ) 246 && false 247 || true 248 }
This always returns TRUE!!!! Fix it like this, please:
return validator.settings.submitHandler && validator.settings.submitHandler( validator.currentForm );
Change History (3)
comment:1 Changed 16 years ago by
comment:2 Changed 16 years ago by
Component: | ajax → plugin |
---|
Note: See
TracTickets for help on using
tickets.
It's about jquery.validate.js :)