From b16127fc105f159ebd06b02df2853941b2aba67c Mon Sep 17 00:00:00 2001 From: Johann-S Date: Thu, 30 Nov 2017 10:54:27 +0100 Subject: Allow Tooltips/Popovers to work in shadow DOM --- js/src/tooltip.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'js/src/tooltip.js') diff --git a/js/src/tooltip.js b/js/src/tooltip.js index 1c40dfed3..9fa53a71b 100644 --- a/js/src/tooltip.js +++ b/js/src/tooltip.js @@ -244,8 +244,9 @@ class Tooltip { if (this.isWithContent() && this._isEnabled) { $(this.element).trigger(showEvent) + const shadowRoot = Util.findShadowRoot(this.element) const isInTheDom = $.contains( - this.element.ownerDocument.documentElement, + shadowRoot !== null ? shadowRoot : this.element.ownerDocument.documentElement, this.element ) -- cgit v1.2.3