Reset splash screen on show instead of hide
This commit is contained in:
parent
ca3d3c7442
commit
5350c2483f
@ -26,6 +26,18 @@ export const showSplash = function() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(splashError) {
|
||||||
|
splashError.setAttribute('aria-hidden', 'true');
|
||||||
|
}
|
||||||
|
|
||||||
|
if(splashSpinner) {
|
||||||
|
splashSpinner.style.visibility = 'visible';
|
||||||
|
}
|
||||||
|
|
||||||
|
if(splashRetry) {
|
||||||
|
splashRetry.hidden = true;
|
||||||
|
}
|
||||||
|
|
||||||
splash.hidden = false;
|
splash.hidden = false;
|
||||||
app.setAttribute('aria-hidden', 'true');
|
app.setAttribute('aria-hidden', 'true');
|
||||||
|
|
||||||
@ -39,18 +51,6 @@ export const hideSplash = () => {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(splashError) {
|
|
||||||
splashError.setAttribute('aria-hidden', 'true');
|
|
||||||
}
|
|
||||||
|
|
||||||
if(splashSpinner) {
|
|
||||||
splashSpinner.style.visibility = 'visible';
|
|
||||||
}
|
|
||||||
|
|
||||||
if(splashRetry) {
|
|
||||||
splashRetry.hidden = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
requestAnimationFrame(() => {
|
requestAnimationFrame(() => {
|
||||||
splash.style.opacity = '0';
|
splash.style.opacity = '0';
|
||||||
app.removeAttribute('aria-hidden');
|
app.removeAttribute('aria-hidden');
|
||||||
|
Loading…
Reference in New Issue
Block a user