1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05: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',
'[tabindex]',
'[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))
}