mirror of
https://github.com/twbs/bootstrap.git
synced 2025-03-21 13:29:00 +01:00
polyfill.js minor tweaks (#32011)
* rename function to `supportsScopeQuery` * use a ternary in `findOne` function return value
This commit is contained in:
parent
d1dcc1e5e6
commit
e6f8428b28
@ -27,7 +27,7 @@ const defaultPreventedPreservedOnDispatch = (() => {
|
||||
})()
|
||||
|
||||
const scopeSelectorRegex = /:scope\b/
|
||||
const supportScopeQuery = (() => {
|
||||
const supportsScopeQuery = (() => {
|
||||
const element = document.createElement('div')
|
||||
|
||||
try {
|
||||
@ -39,7 +39,7 @@ const supportScopeQuery = (() => {
|
||||
return true
|
||||
})()
|
||||
|
||||
if (!supportScopeQuery) {
|
||||
if (!supportsScopeQuery) {
|
||||
find = function (selector) {
|
||||
if (!scopeSelectorRegex.test(selector)) {
|
||||
return this.querySelectorAll(selector)
|
||||
@ -71,11 +71,7 @@ if (!supportScopeQuery) {
|
||||
|
||||
const matches = find.call(this, selector)
|
||||
|
||||
if (typeof matches[0] !== 'undefined') {
|
||||
return matches[0]
|
||||
}
|
||||
|
||||
return null
|
||||
return matches[0] ? matches[0] : null
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user