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.

27 lines
290 B

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