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.

47 lines
710 B

  1. semantic.popup = {};
  2. // ready event
  3. semantic.popup.ready = function() {
  4. // selector cache
  5. var
  6. $popup = $('.main .ui[data-content], .main .ui[data-html], .main i[title], .main i[data-content], .main i[data-html]'),
  7. // alias
  8. handler
  9. ;
  10. $popup
  11. .popup({
  12. className: {
  13. popup: 'ignored ui popup'
  14. }
  15. })
  16. ;
  17. $('.fluid.example .button')
  18. .popup()
  19. ;
  20. $('.fitted.example .button')
  21. .popup({
  22. on: 'click'
  23. })
  24. ;
  25. $('.existing.example .rating')
  26. .rating()
  27. ;
  28. $('.existing.example .card')
  29. .popup({
  30. className: {
  31. popup: 'ignored ui popup'
  32. }
  33. })
  34. ;
  35. };
  36. // attach ready event
  37. $(document)
  38. .ready(semantic.popup.ready)
  39. ;