Prettified Code!

This commit is contained in:
zero01101 2024-02-21 23:20:27 +00:00 committed by GitHub Action
parent 3174f1e424
commit 04e2d5ceaf
2 changed files with 15 additions and 12 deletions

View file

@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8" />

View file

@ -62,9 +62,12 @@ const _monitorProgress = (bb, oncheck = null) => {
}
const timeSpent = performance.now() - init;
setTimeout(() => {
setTimeout(
() => {
if (running) _checkProgress();
}, Math.max(0, minDelay - timeSpent));
},
Math.max(0, minDelay - timeSpent)
);
};
_checkProgress();