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
diff options
context:
space:
mode:
Diffstat (limited to 'js')
-rw-r--r--js/src/tooltip.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/js/src/tooltip.js b/js/src/tooltip.js
index 9c8e54c66b..94c3935bd9 100644
--- a/js/src/tooltip.js
+++ b/js/src/tooltip.js
@@ -117,7 +117,7 @@ class Tooltip extends BaseComponent {
throw new TypeError('Bootstrap\'s tooltips require Popper (https://popper.js.org)')
}
- super(element)
+ super(element, config)
// Private
this._isEnabled = true
@@ -128,7 +128,6 @@ class Tooltip extends BaseComponent {
this._templateFactory = null
// Protected
- this._config = this._getConfig(config)
this.tip = null
this._setListeners()