"...resnet50_tensorflow.git" did not exist on "1a309fa9ce732539761839a460a6a7ad4e2b022d"
Commit b9444d00 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

Update Tooltip.svelte

parent 0bc3e0a3
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
export let placement = 'top'; export let placement = 'top';
export let content = `I'm a tooltip!`; export let content = `I'm a tooltip!`;
export let touch = true;
let tooltipElement; let tooltipElement;
let tooltipInstance; let tooltipInstance;
...@@ -15,7 +16,8 @@ ...@@ -15,7 +16,8 @@
tooltipInstance = tippy(tooltipElement, { tooltipInstance = tippy(tooltipElement, {
content: content, content: content,
placement: placement, placement: placement,
allowHTML: true allowHTML: true,
touch: touch
}); });
} }
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment