Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bundle.js « integration « tests « js - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f2d3b0d7bec1acf9f9b6e2b02c9e0d3528b8ba92 (plain)
1
2
3
4
5
6
7
import 'popper.js'
import bootstrap from '../../../dist/js/bootstrap'

window.addEventListener('load', () => {
  Array.from(document.querySelectorAll('[data-toggle="tooltip"]'))
    .map((tooltipNode) => new bootstrap.Tooltip(tooltipNode))
})