0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-18 10:52:19 +01:00

8 lines
233 B
JavaScript
Raw Normal View History

import 'popper.js'
import { Tooltip } from '../../../dist/js/bootstrap.esm.js'
2019-01-04 16:09:52 +02:00
window.addEventListener('load', () => {
2019-02-26 13:20:34 +02:00
[...document.querySelectorAll('[data-toggle="tooltip"]')]
2019-03-01 11:11:41 +02:00
.map(tooltipNode => new Tooltip(tooltipNode))
})