Compare commits

..

No commits in common. "3ec9af38e00bf81f97e90b2731632d6131f9954b" and "e03e48d08ffcd76b3911ba9a22958f4b204d4597" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{# Template #}
<!DOCTYPE html>
<html lang="en">
<html>
<head>
<title>Empede</title>

View file

@ -75,7 +75,7 @@
progressInterval = window.setInterval(() => {
elapsed += 1.0;
let progress = Math.min(elapsed / duration, 1.0);
let progress = elapsed / duration;
progressBar.style.width = `${progress * 100}%`;
}, 1000);
{% endif %}