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: 5597cd063ce59cfc314fa0ff04287c4118f7445d (plain)
1
2
3
4
5
6
7
import 'popper.js'
import bootstrap from '../../../dist/js/bootstrap'

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