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:
@@ -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
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user