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.

11 lines
154 B

  1. semantic.dropdown = {};
  2. // ready event
  3. semantic.dropdown.ready = function() {
  4. };
  5. // attach ready event
  6. $(document)
  7. .ready(semantic.dropdown.ready)
  8. ;