Build 29091656

This commit is contained in:
Renan LE CARO 2025-04-24 14:57:08 +02:00
parent f48d9bdfa3
commit e2d8a0ab5c
28 changed files with 2607 additions and 2496 deletions

View file

@ -140,8 +140,8 @@ ${icon}
if (isOptionOn("mobile-mode")) {
const helpBtn = document.createElement("button");
helpBtn.innerText = "?";
helpBtn.setAttribute('data-help-content',tooltip);
button.appendChild(helpBtn)
helpBtn.setAttribute("data-help-content", tooltip);
button.appendChild(helpBtn);
} else {
button.setAttribute("data-tooltip", tooltip);
}
@ -185,4 +185,3 @@ function updateAlertsOpen(delta: number) {
}
document.body.classList[alertsOpen ? "add" : "remove"]("has-alert-open");
}