mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2026-02-22 16:15:13 +01:00
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";
|
|
}
|