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.

25 lines
419 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. };
  18. // attach ready event
  19. $(document)
  20. .ready(semantic.popup.ready)
  21. ;