2022-02-22 22:10:18 +08:00
|
|
|
function removeSplashFromWeb() {
|
2023-03-20 15:52:49 +08:00
|
|
|
document.getElementById("splash")?.remove();
|
|
|
|
|
document.getElementById("splash-branding")?.remove();
|
2022-02-22 22:10:18 +08:00
|
|
|
document.body.style.background = "transparent";
|
|
|
|
|
}
|