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
290 B

  1. $(document)
  2. .ready(function() {
  3. $('.filter.menu .item')
  4. .tab()
  5. ;
  6. $('.ui.rating')
  7. .rating({
  8. clearable: true
  9. })
  10. ;
  11. $('.ui.sidebar')
  12. .sidebar('attach events', '.launch.button')
  13. ;
  14. $('.ui.dropdown')
  15. .dropdown()
  16. ;
  17. })
  18. ;