Fixed exit transition bug

This commit is contained in:
Nico Opiyo 2019-03-07 23:20:57 +03:00
parent 93a6a6a75b
commit de1790ac76
1 changed files with 4 additions and 2 deletions

View File

@ -454,9 +454,11 @@ var Display = {
alertBackground.addEventListener('animationend', function (e) {
e.stopPropagation();
if (Display._animationState === AnimationState.ScrollingAnimation) {
console.debug("Scrolling animation finished");
alertText.classList.remove("horizontal-scroll-animation");
alertText.style.visibility = "hidden";
Display._animationState = AnimationState.NoAnimation;
Display._animationState = AnimationState.NoAnimation;
Display.doExitTransition();
}
});
},
@ -486,7 +488,7 @@ var Display = {
alertBackground.style.backgroundColor = settings.background_color;
if (this._alertState === AlertState.DisplayingFromQueue) {
transitionSetting = "1s linear 1s";
transitionSetting = "1s linear 2s";
}
else {
transitionSetting = "1s linear";