We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1d94ff commit c609fbaCopy full SHA for c609fba
web_src/js/modules/tippy.js
@@ -23,7 +23,12 @@ export function createTippy(target, opts = {}) {
23
export function initTooltip(el, props = {}) {
24
const content = el.getAttribute('data-content') || props.content;
25
if (!content) return null;
26
- return createTippy(el, {content, role: 'tooltip', ...props});
+ return createTippy(el, {
27
+ content,
28
+ delay: 100,
29
+ role: 'tooltip',
30
+ ...props,
31
+ });
32
}
33
34
export function showTemporaryTooltip(target, content) {
0 commit comments