mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
simplify toggle
This commit is contained in:
parent
3533e2d637
commit
d130b00cad
@ -124,18 +124,7 @@ class Dropdown extends BaseComponent {
|
||||
// Public
|
||||
|
||||
toggle() {
|
||||
if (isDisabled(this._element)) {
|
||||
return
|
||||
}
|
||||
|
||||
const isActive = this._isShown()
|
||||
|
||||
if (isActive) {
|
||||
this.hide()
|
||||
return
|
||||
}
|
||||
|
||||
this.show()
|
||||
return this._isShown() ? this.hide() : this.show()
|
||||
}
|
||||
|
||||
show() {
|
||||
|
Loading…
Reference in New Issue
Block a user