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.

33 lines
516 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. preserve: true,
  13. className: {
  14. popup: 'ignored ui popup'
  15. }
  16. })
  17. ;
  18. $('.fluid.example .button')
  19. .popup({
  20. inline: true
  21. })
  22. ;
  23. };
  24. // attach ready event
  25. $(document)
  26. .ready(semantic.popup.ready)
  27. ;