0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-12 00:08:59 +01:00
Bootstrap/js/tests/integration/bundle.js

10 lines
337 B
JavaScript
Raw Normal View History

import 'popper.js'
import bootstrap from '../../../dist/js/bootstrap'
2019-01-04 15:09:52 +01:00
window.addEventListener('load', () => {
document.getElementById('resultUID').innerHTML = bootstrap.Util.getUID('bs')
bootstrap.Util.makeArray(document.querySelectorAll('[data-toggle="tooltip"]'))
.map((tooltipNode) => new bootstrap.Tooltip(tooltipNode))
})