#12200 increase the duration of the snow effect from about

This commit is contained in:
Jorge Rincon 2023-11-17 10:07:13 +01:00
parent 8635617815
commit 4ba13ad0e7
2 changed files with 12 additions and 12 deletions

View File

@ -2557,3 +2557,15 @@ function WarningPeriodicityModal(title, message) {
hideOkButton: 1
});
}
function christmas_click() {
let counter = $("#count_click").val();
counter++;
$("#count_click").val(counter);
if (counter == 25) {
$("#container-snow").removeClass("invisible");
setTimeout(() => {
$("#container-snow").addClass("invisible");
}, 120000);
}
}

View File

@ -1483,18 +1483,6 @@ function show_dialog(dialog) {
}, 50);
}
function christmas_click() {
let counter = $("#count_click").val();
counter++;
$("#count_click").val(counter);
if (counter == 25) {
$("#container-snow").removeClass("invisible");
setTimeout(() => {
$("#container-snow").addClass("invisible");
}, 30000);
}
}
/*
#############################################################################
##