From 4535b09c46b0de464dc7bca435e18bd463791112 Mon Sep 17 00:00:00 2001 From: Rohit Sharma Date: Fri, 11 Dec 2020 00:36:41 +0530 Subject: Tooltip - check if tip and its parent node exist in dispose method (#32420) --- js/src/tooltip.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'js/src') diff --git a/js/src/tooltip.js b/js/src/tooltip.js index 4eb4fde0b..103524b8b 100644 --- a/js/src/tooltip.js +++ b/js/src/tooltip.js @@ -222,7 +222,7 @@ class Tooltip extends BaseComponent { EventHandler.off(this._element, this.constructor.EVENT_KEY) EventHandler.off(this._element.closest(`.${CLASS_NAME_MODAL}`), 'hide.bs.modal', this._hideModalHandler) - if (this.tip) { + if (this.tip && this.tip.parentNode) { this.tip.parentNode.removeChild(this.tip) } -- cgit v1.2.3