mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-31 01:35:36 +02:00
#12200 increase the duration of the snow effect from about
This commit is contained in:
parent
8635617815
commit
4ba13ad0e7
@ -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);
|
||||
}
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
#############################################################################
|
||||
##
|
||||
|
Loading…
x
Reference in New Issue
Block a user