aboutsummaryrefslogtreecommitdiff
path: root/js/tests/integration/bundle.js
diff options
context:
space:
mode:
authorJohann-S <[email protected]>2019-02-23 00:37:55 +0200
committerXhmikosR <[email protected]>2019-02-26 13:04:04 +0200
commit8a37045b798fd66ede9c68774f9bb657e28d956a (patch)
tree35a1cf1b26701975f9732e99553e53fb295678c7 /js/tests/integration/bundle.js
parent8affe84c722bc459e7152e57d36a4f515f537abf (diff)
downloadbootstrap-8a37045b798fd66ede9c68774f9bb657e28d956a.tar.xz
bootstrap-8a37045b798fd66ede9c68774f9bb657e28d956a.zip
move util in a util folder with the sanitizer
Diffstat (limited to 'js/tests/integration/bundle.js')
-rw-r--r--js/tests/integration/bundle.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/js/tests/integration/bundle.js b/js/tests/integration/bundle.js
index 23caeab73..f2d3b0d7b 100644
--- a/js/tests/integration/bundle.js
+++ b/js/tests/integration/bundle.js
@@ -2,8 +2,6 @@ import 'popper.js'
import bootstrap from '../../../dist/js/bootstrap'
window.addEventListener('load', () => {
- document.getElementById('resultUID').innerHTML = bootstrap.Util.getUID('bs')
-
- bootstrap.Util.makeArray(document.querySelectorAll('[data-toggle="tooltip"]'))
+ Array.from(document.querySelectorAll('[data-toggle="tooltip"]'))
.map((tooltipNode) => new bootstrap.Tooltip(tooltipNode))
})