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
diff options
context:
space:
mode:
authorJohann-S <johann.servoire@gmail.com>2018-12-05 12:25:00 +0300
committerJohann-S <johann.servoire@gmail.com>2018-12-05 12:57:02 +0300
commit37f74c70702c4e90e12f062e63358cb64670eb01 (patch)
treeb51bfab62ae869cef3502b79319888866bdcd2ba /js/src
parent1a171b80ab1b46f59cfd727a7e5f8a10fc43b189 (diff)
fix regression about using element for tooltip container option
Diffstat (limited to 'js/src')
-rw-r--r--js/src/tooltip.js15
1 files changed, 13 insertions, 2 deletions
diff --git a/js/src/tooltip.js b/js/src/tooltip.js
index f428a79ebd..1c40dfed34 100644
--- a/js/src/tooltip.js
+++ b/js/src/tooltip.js
@@ -272,8 +272,7 @@ class Tooltip {
const attachment = this._getAttachment(placement)
this.addAttachmentClass(attachment)
- const container = this.config.container === false ? document.body : $(document).find(this.config.container)
-
+ const container = this._getContainer()
$(tip).data(this.constructor.DATA_KEY, this)
if (!$.contains(this.element.ownerDocument.documentElement, this.tip)) {
@@ -450,6 +449,18 @@ class Tooltip {
// Private
+ _getContainer() {
+ if (this.config.container === false) {
+ return document.body
+ }
+
+ if (Util.isElement(this.config.container)) {
+ return $(this.config.container)
+ }
+
+ return $(document).find(this.config.container)
+ }
+
_getAttachment(placement) {
return AttachmentMap[placement.toUpperCase()]
}