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.

22 lines
278 B

11 years ago
  1. semantic.table = {};
  2. // ready event
  3. semantic.table.ready = function() {
  4. // selector cache
  5. var
  6. $sortTable = $('.sortable.table'),
  7. // alias
  8. handler
  9. ;
  10. $sortTable
  11. .tablesort()
  12. ;
  13. };
  14. // attach ready event
  15. $(document)
  16. .ready(semantic.table.ready)
  17. ;