elektronika/web/splash/splash.js

8 lines
172 B
JavaScript
Raw Normal View History

2023-03-29 12:30:58 +00:00
function removeSplashFromWeb() {
const elem = document.getElementById("splash");
if (elem) {
elem.remove();
}
document.body.style.background = "transparent";
}