mirror of
https://github.com/feeddeck/feeddeck.git
synced 2026-07-29 12:25:39 -05:00
6 lines
188 B
JavaScript
6 lines
188 B
JavaScript
function removeSplashFromWeb() {
|
|
document.getElementById("splash")?.remove();
|
|
document.getElementById("splash-branding")?.remove();
|
|
document.body.style.background = "transparent";
|
|
}
|