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.

24 lines
347 B

  1. semantic.table = {};
  2. // ready event
  3. semantic.table.ready = function() {
  4. // selector cache
  5. var
  6. // alias
  7. handler
  8. ;
  9. $('.ui.checkbox').checkbox({
  10. onChecked: function() {
  11. $(this).closest('.table').find('.button').removeClass('disabled');
  12. }
  13. });
  14. };
  15. // attach ready event
  16. $(document)
  17. .ready(semantic.table.ready)
  18. ;