Add a tooltip with last update to discontinued items.

This commit is contained in:
Krzysztof Płaczek
2025-02-16 10:22:09 +01:00
parent 81f9c863c7
commit 5c2777999a
5 changed files with 13 additions and 4 deletions

4
templates/js/script.js Normal file
View File

@@ -0,0 +1,4 @@
(function() {
const tooltipTriggerList = document.querySelectorAll('[data-bs-toggle="tooltip"]')
const tooltipList = [...tooltipTriggerList].map(tooltipTriggerEl => new bootstrap.Tooltip(tooltipTriggerEl))
})();