mirror of
https://github.com/qinglong-app/qinglong_app.git
synced 2025-10-09 16:48:19 +08: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";
|
|
}
|