mirror of
https://github.com/torproject/webwml.git
synced 2024-12-04 00:11:52 +00:00
9 lines
281 B
JavaScript
9 lines
281 B
JavaScript
document.addEventListener("DOMContentLoaded", function(event) {
|
|
var animate = document.getElementById("animate");
|
|
animate.classList.add("not-loaded");
|
|
window.setTimeout(function () {
|
|
animate.classList.remove("not-loaded");
|
|
animate.classList.add("loaded");
|
|
}, 0);
|
|
});
|