Files
qinglong_app/web/splash/splash.js
2022-04-25 10:12:50 +08:00

8 lines
172 B
JavaScript

function removeSplashFromWeb() {
const elem = document.getElementById("splash");
if (elem) {
elem.remove();
}
document.body.style.background = "transparent";
}