]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
SelectorEngine: remove moot space
authorXhmikosR <xhmikosr@gmail.com>
Thu, 9 Dec 2021 19:52:39 +0000 (21:52 +0200)
committerXhmikosR <xhmikosr@gmail.com>
Sat, 29 Jan 2022 11:25:30 +0000 (13:25 +0200)
js/src/dom/selector-engine.js

index af27dc3795e58bcd25fa15ebca6f95715bd1f602..39f3971dca3e0bf7c8a41097f3df7416bdc1f238 100644 (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))
   }