clearing background color property after animation is done

closes #3638
This commit is contained in:
Miodec 2022-10-09 00:41:34 +02:00
parent f2d7acd7f0
commit 640e5a4894

View file

@ -461,6 +461,9 @@ async function flashLevel(): Promise<void> {
},
duration: 2000,
easing: "easeOutCubic",
complete: () => {
barEl.css("background-color", "");
},
}
);
}