1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-09-28 14:29:07 +02:00

Fix bug where backdrop calls method on null if it is already removed from the body (#34014)

Co-authored-by: Rohit Sharma <rohit2sharma95@gmail.com>
This commit is contained in:
Ryan Weaver
2021-05-21 18:16:05 -04:00
committed by GitHub
parent d64466a248
commit a2b5901efc
2 changed files with 24 additions and 1 deletions

View File

@@ -116,7 +116,11 @@ class Backdrop {
EventHandler.off(this._element, EVENT_MOUSEDOWN)
this._getElement().parentNode.removeChild(this._element)
const { parentNode } = this._getElement()
if (parentNode) {
parentNode.removeChild(this._element)
}
this._isAppended = false
}