wishthis/node_modules/fomantic-ui/examples/assets/show-examples.js

16 lines
400 B
JavaScript
Raw Normal View History

2022-01-13 13:00:31 +00:00
$(document)
2023-08-17 09:47:40 +00:00
.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'),
})
;
});
})
2022-01-13 13:00:31 +00:00
;