1.3 #1

Merged
meteo merged 11 commits from 1.3 into main 2026-07-08 21:37:31 +00:00
Showing only changes of commit b4f3553f1e - Show all commits

View File

@@ -76,9 +76,9 @@ function showDeleteConfirmation({
let $element = $("#" + elementId);
if (action === "show") {
$element.fadeIn(500); // Fade in element smoothly
$element.removeClass("d-none").fadeIn(500);
} else if (action === "hide") {
$element.fadeOut(0); // Fade out element smoothly
$element.fadeOut(0).addClass("d-none");
}
}
} catch (error) {