mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 15:24:35 +01:00
8 lines
172 B
JavaScript
8 lines
172 B
JavaScript
function removeSplashFromWeb() {
|
|
const elem = document.getElementById("splash");
|
|
if (elem) {
|
|
elem.remove();
|
|
}
|
|
document.body.style.background = "transparent";
|
|
}
|