Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js/src/util
diff options
context:
space:
mode:
authorNagarjun Bodduna <boddunan@gmail.com>2021-05-10 21:17:53 +0300
committerGitHub <noreply@github.com>2021-05-10 21:17:53 +0300
commit741fa589d027c2d16bff844e45a08c842f5f7e04 (patch)
treedb1823b7d11cd5558d630eaffd64866cdfbef0d5 /js/src/util
parent308ffba7930a33b93d0366ad6c19336f907e60da (diff)
Fix backdrop `rootElement` not initialized in Modal (#33853)
* Initialize default value of rootElement before using * Remove redundant test | put rootElement tests together Co-authored-by: GeoSot <geo.sotis@gmail.com>
Diffstat (limited to 'js/src/util')
-rw-r--r--js/src/util/backdrop.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/js/src/util/backdrop.js b/js/src/util/backdrop.js
index 775c09ec03..ad9fcb92fa 100644
--- a/js/src/util/backdrop.js
+++ b/js/src/util/backdrop.js
@@ -89,6 +89,8 @@ class Backdrop {
...Default,
...(typeof config === 'object' ? config : {})
}
+
+ config.rootElement = config.rootElement || document.body
typeCheckConfig(NAME, config, DefaultType)
return config
}