UNPKG

348 BJavaScriptView Raw
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;