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
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/dom/selectorEngine.js')
-rw-r--r--js/src/dom/selectorEngine.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/js/src/dom/selectorEngine.js b/js/src/dom/selectorEngine.js
index 95b5a9fb50..151bb54c75 100644
--- a/js/src/dom/selectorEngine.js
+++ b/js/src/dom/selectorEngine.js
@@ -6,7 +6,9 @@
*/
import Polyfill from './polyfill'
-import Util from '../util'
+import {
+ makeArray
+} from '../util/index'
/**
* ------------------------------------------------------------------------
@@ -44,7 +46,7 @@ const SelectorEngine = {
return null
}
- const children = Util.makeArray(element.children)
+ const children = makeArray(element.children)
return children.filter((child) => this.matches(child, selector))
},