mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Tooltip: remove extraneous call to _getConfig() (#35540)
BaseClass already initializes the config Co-authored-by: XhmikosR <xhmikosr@gmail.com>
This commit is contained in:
parent
d40fae456e
commit
e0960b08e0
1 changed files with 1 additions and 2 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue