Corban-Lee Jones 38b8184499
All checks were successful
Build and Push Docker Image / build (push) Successful in 42s
move to scss (incomplete)
incomplete, moving to scss
2024-10-13 23:36:42 +01:00

7 lines
226 B
JavaScript

import { Tooltip } from '../../../dist/js/bootstrap.esm.js'
window.addEventListener('load', () => {
[].concat(...document.querySelectorAll('[data-bs-toggle="tooltip"]'))
.map(tooltipNode => new Tooltip(tooltipNode))
})