0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-02 14:24:19 +01:00

SelectorEngine: remove moot space

This commit is contained in:
XhmikosR 2021-12-09 21:52:39 +02:00
parent 558002f3dc
commit 0840105d7f

View File

@ -79,7 +79,7 @@ const SelectorEngine = {
'details', 'details',
'[tabindex]', '[tabindex]',
'[contenteditable="true"]' '[contenteditable="true"]'
].map(selector => `${selector}:not([tabindex^="-"])`).join(', ') ].map(selector => `${selector}:not([tabindex^="-"])`).join(',')
return this.find(focusables, element).filter(el => !isDisabled(el) && isVisible(el)) return this.find(focusables, element).filter(el => !isDisabled(el) && isVisible(el))
} }