1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-09 15:16:51 +02:00

Offcanvas.js: If scroll is allowed, should allow focus on other elements (#33677)

This commit is contained in:
GeoSot
2021-04-20 08:32:52 +03:00
committed by GitHub
parent 0bbe45cd97
commit 079f2cd90c
2 changed files with 35 additions and 1 deletions

View File

@@ -112,6 +112,7 @@ class Offcanvas extends BaseComponent {
if (!this._config.scroll) {
scrollBarHide()
this._enforceFocusOnElement(this._element)
}
this._element.removeAttribute('aria-hidden')
@@ -121,7 +122,6 @@ class Offcanvas extends BaseComponent {
const completeCallBack = () => {
EventHandler.trigger(this._element, EVENT_SHOWN, { relatedTarget })
this._enforceFocusOnElement(this._element)
}
const transitionDuration = getTransitionDurationFromElement(this._element)