splash.js 188 B

12345
  1. function removeSplashFromWeb() {
  2. document.getElementById("splash")?.remove();
  3. document.getElementById("splash-branding")?.remove();
  4. document.body.style.background = "transparent";
  5. }