You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
332 B

  1. semantic.validateForm = {};
  2. // ready event
  3. semantic.validateForm.ready = function() {
  4. // selector cache
  5. var
  6. $checkbox = $('.ui.checkbox'),
  7. // alias
  8. handler
  9. ;
  10. // event handlers
  11. handler = {
  12. };
  13. $checkbox
  14. .checkbox()
  15. ;
  16. };
  17. // attach ready event
  18. $(document)
  19. .ready(semantic.validateForm.ready)
  20. ;