Files
BistroFrontend/web/splash/splash.js

8 lines
172 B
JavaScript
Raw Normal View History

2022-02-22 22:10:18 +08:00
function removeSplashFromWeb() {
const elem = document.getElementById("splash");
if (elem) {
elem.remove();
}
document.body.style.background = "transparent";
}