16 lines
348 B
JavaScript
16 lines
348 B
JavaScript
|
$(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')
|
||
|
})
|
||
|
;
|
||
|
});
|
||
|
})
|
||
|
;
|