1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-04-22 08:44:08 +02:00

Attempt to return focus explicitly to dropdown trigger

This commit is contained in:
Mark Otto 2025-04-10 14:09:32 -07:00
parent c147a5d7d6
commit 367fa135aa

View File

@ -207,6 +207,9 @@ class Dropdown extends BaseComponent {
this._element.setAttribute('aria-expanded', 'false')
Manipulator.removeDataAttribute(this._menu, 'popper')
EventHandler.trigger(this._element, EVENT_HIDDEN, relatedTarget)
// Explicitly return focus to the trigger element
this._element.focus()
}
_getConfig(config) {