fluffychat/web/splash/splash.js
2023-11-08 12:27:18 -05:00

7 lines
172 B
JavaScript

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