refactor(http): longer delay before progress

This commit is contained in:
cha0s 2022-02-28 00:15:15 -06:00
parent dc60217bd6
commit 39ad89a604

View File

@ -20,7 +20,7 @@ export default class Progress {
style.transition = '1s width, 0.5s opacity';
setTimeout(() => {
style.display = 'block';
}, 250);
}, 600);
this.progress.style.width = '0%';
this.progress.value = 0;
window.document.body.prepend(this.progress);