oliverbooth.dev/src/ts/app.ts

7 lines
182 B
TypeScript
Raw Normal View History

2023-08-08 01:08:18 +00:00
declare const bootstrap: any;
2023-08-04 11:55:16 +00:00
(() => {
2023-08-08 01:08:18 +00:00
const list = document.querySelectorAll('[data-bs-toggle="tooltip"]');
list.forEach((el: Element) => new bootstrap.Tooltip(el));
2023-08-04 11:55:16 +00:00
})();