diff options
| author | Johann-S <[email protected]> | 2019-02-23 00:37:55 +0200 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2019-02-26 13:04:04 +0200 |
| commit | 8a37045b798fd66ede9c68774f9bb657e28d956a (patch) | |
| tree | 35a1cf1b26701975f9732e99553e53fb295678c7 /js/tests/integration/bundle.js | |
| parent | 8affe84c722bc459e7152e57d36a4f515f537abf (diff) | |
| download | bootstrap-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.js | 4 |
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)) }) |
