Aggiornamento librerie

This commit is contained in:
2026-02-24 12:48:23 +01:00
parent c7fb4a28a4
commit e8adb76256
6 changed files with 58 additions and 84 deletions

View File

@@ -4,15 +4,6 @@ window.goBack = function () {
history.back();
};
// Funzione per aggiungere tabindex ai bottoni
function addTabindexToButtons() {
document.querySelectorAll('button.custom-plus-button').forEach(btn => {
if (!btn.hasAttribute('tabindex')) {
btn.setAttribute('tabindex', '0');
}
});
}
// Funzione per monitorare bottom-sheet-container e gestire la navbar
function monitorBottomSheetClass(mutations) {
const bottomSheet = document.querySelector(".bottom-sheet-container");