mirror of
https://github.com/torproject/webwml.git
synced 2024-12-03 16:00:54 +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);
|
|
});
|