Semantic-Org/Semantic-UI

View on GitHub
examples/assets/show-examples.js

Summary

Maintainability
A
0 mins
Test Coverage
$(document)
  .ready(function() {
      // add popup to show name
      $('.ui:not(.container, .grid)').each(function() {
        $(this)
          .popup({
            on        : 'hover',
            variation : 'small inverted',
            exclusive : true,
            content   : $(this).attr('class')
          })
        ;
      });
  })
;