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.

15 lines
348 B

  1. $(document)
  2. .ready(function() {
  3. // add popup to show name
  4. $('.ui:not(.container, .grid)').each(function() {
  5. $(this)
  6. .popup({
  7. on : 'hover',
  8. variation : 'small inverted',
  9. exclusive : true,
  10. content : $(this).attr('class')
  11. })
  12. ;
  13. });
  14. })
  15. ;