Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2021-12-09 22:52:39 +0300
committerXhmikosR <xhmikosr@gmail.com>2022-01-29 14:25:30 +0300
commit0840105d7f794c8f1c429eced58ffb80af453ff8 (patch)
tree2bc219b4a5627d015281f53444a768555b1b7f10 /js
parent558002f3dccb9fcb1ba408abfbe55d201af4e152 (diff)
SelectorEngine: remove moot space
Diffstat (limited to 'js')
-rw-r--r--js/src/dom/selector-engine.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/dom/selector-engine.js b/js/src/dom/selector-engine.js
index af27dc3795..39f3971dca 100644
--- a/js/src/dom/selector-engine.js
+++ b/js/src/dom/selector-engine.js
@@ -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))
}