mirror of
https://github.com/ente-io/ente.git
synced 2025-06-26 03:40:35 +00: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";
|
|
}
|