Revision 9cf0e9b7355e337f76fccf9eafc2f3232f09f357 authored by Julien Déramond on 28 June 2022, 05:31:47 UTC, committed by GitHub on 28 June 2022, 05:31:47 UTC
1 parent 4f4b42d
Raw File
bundle.js
import { Tooltip } from '../../../dist/js/bootstrap.esm.js'

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