TF-2135 Add splash screen for web

(cherry picked from commit da3c6133d7ae9210dd7dcbe98470f1836cea8e33)
This commit is contained in:
dab246
2023-09-13 18:27:12 +07:00
committed by Dat Vu
parent 5f053be2de
commit fa589fc81c
21 changed files with 105 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
function removeSplashFromWeb() {
document.getElementById("splash")?.remove();
document.getElementById("splash-branding")?.remove();
document.body.style.background = "transparent";
}