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/polyfill.js')
-rw-r--r--js/src/dom/polyfill.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/js/src/dom/polyfill.js b/js/src/dom/polyfill.js
index cbae0f668e..579b7a10ed 100644
--- a/js/src/dom/polyfill.js
+++ b/js/src/dom/polyfill.js
@@ -5,7 +5,9 @@
* --------------------------------------------------------------------------
*/
-import Util from '../util'
+import {
+ getUID
+} from '../util/index'
/* istanbul ignore next */
const Polyfill = (() => {
@@ -48,7 +50,7 @@ const Polyfill = (() => {
const hasId = Boolean(this.id)
if (!hasId) {
- this.id = Util.getUID('scope')
+ this.id = getUID('scope')
}
let nodeList = null