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.

44 lines
663 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. inline: true
  20. })
  21. ;
  22. $('.existing.example .rating')
  23. .rating()
  24. ;
  25. $('.existing.example .card')
  26. .popup({
  27. className: {
  28. popup: 'ignored ui popup'
  29. }
  30. })
  31. ;
  32. };
  33. // attach ready event
  34. $(document)
  35. .ready(semantic.popup.ready)
  36. ;