fa589fc81c
(cherry picked from commit da3c6133d7ae9210dd7dcbe98470f1836cea8e33)
6 lines
188 B
JavaScript
6 lines
188 B
JavaScript
function removeSplashFromWeb() {
|
|
document.getElementById("splash")?.remove();
|
|
document.getElementById("splash-branding")?.remove();
|
|
document.body.style.background = "transparent";
|
|
}
|