diff --git a/src/ts/app.ts b/src/ts/app.ts index 5084b91..87ddb7d 100644 --- a/src/ts/app.ts +++ b/src/ts/app.ts @@ -1,3 +1,6 @@ +declare const bootstrap: any; (() => { + const list = document.querySelectorAll('[data-bs-toggle="tooltip"]'); + list.forEach((el: Element) => new bootstrap.Tooltip(el)); })();