Untitled

 avatar
unknown
plain_text
2 years ago
135 B
7
Indexable

onload = () => {
  const c = setTimeout(() => {
    document.body.classList.remove("not-loaded");
    clearTimeout(c);
  }, 1000);
};
Editor is loading...