From 0d9715e0636cd79527ece5a364a74dc3d3e99923 Mon Sep 17 00:00:00 2001 From: Ian Haggerty Date: Wed, 31 May 2023 00:40:38 -0400 Subject: [PATCH] Fix disabled element tooltip stackblitz (#38623) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Load js for disabled button tooltip stackblitz * Remove surrounding useless `
` --------- Co-authored-by: Julien Déramond Co-authored-by: XhmikosR --- site/content/docs/5.3/components/tooltips.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/site/content/docs/5.3/components/tooltips.md b/site/content/docs/5.3/components/tooltips.md index cf628e344f..d41b6e2cd0 100644 --- a/site/content/docs/5.3/components/tooltips.md +++ b/site/content/docs/5.3/components/tooltips.md @@ -177,13 +177,11 @@ The required markup for a tooltip is only a `data` attribute and `title` on the Elements with the `disabled` attribute aren't interactive, meaning users cannot focus, hover, or click them to trigger a tooltip (or popover). As a workaround, you'll want to trigger the tooltip from a wrapper `
` or ``, ideally made keyboard-focusable using `tabindex="0"`. -
-{{< example >}} +{{< example class="tooltip-demo" stackblitz_add_js="true" >}} {{< /example >}} -
### Options