mirror of
https://github.com/xodivorce/xeorl.git
synced 2025-12-19 16:23:01 +05:30
8 lines
261 B
JavaScript
8 lines
261 B
JavaScript
window.addEventListener("load", function() {
|
|
setTimeout(() => {
|
|
document.querySelector(".preloader").classList.add("hidden");
|
|
document.documentElement.style.overflow = "auto";
|
|
document.body.style.overflow = "auto";
|
|
}, 3500);
|
|
});
|