forked from open-webui/open-webui
Update Tooltip.svelte
This commit is contained in:
parent
0bc3e0a302
commit
b9444d00b3
1 changed files with 3 additions and 1 deletions
|
@ -4,6 +4,7 @@
|
|||
|
||||
export let placement = 'top';
|
||||
export let content = `I'm a tooltip!`;
|
||||
export let touch = true;
|
||||
|
||||
let tooltipElement;
|
||||
let tooltipInstance;
|
||||
|
@ -15,7 +16,8 @@
|
|||
tooltipInstance = tippy(tooltipElement, {
|
||||
content: content,
|
||||
placement: placement,
|
||||
allowHTML: true
|
||||
allowHTML: true,
|
||||
touch: touch
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue