wishthis/node_modules/fomantic-ui/examples/assets/show-examples.js
2023-08-17 11:47:40 +02:00

15 lines
400 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'),
})
;
});
})
;