diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-04-29 19:16:54 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-04-29 19:16:54 +0000 |
commit | c48ab36cb9e0120c6f1779bee9e875bee8f903f5 (patch) | |
tree | e2c4b4d1a7fe032fc9f7b53163c618447408da74 /javascript/progressbar.js | |
parent | bd9700405a0686769b58437fd87d9106d3cd1346 (diff) | |
download | stable-diffusion-webui-gfx803-c48ab36cb9e0120c6f1779bee9e875bee8f903f5.tar.gz stable-diffusion-webui-gfx803-c48ab36cb9e0120c6f1779bee9e875bee8f903f5.tar.bz2 stable-diffusion-webui-gfx803-c48ab36cb9e0120c6f1779bee9e875bee8f903f5.zip |
alternate restore progress button implementation
Diffstat (limited to 'javascript/progressbar.js')
-rw-r--r-- | javascript/progressbar.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/javascript/progressbar.js b/javascript/progressbar.js index 8df3f569..23bbf298 100644 --- a/javascript/progressbar.js +++ b/javascript/progressbar.js @@ -66,7 +66,7 @@ function randomId(){ // starts sending progress requests to "/internal/progress" uri, creating progressbar above progressbarContainer element and // preview inside gallery element. Cleans up all created stuff when the task is over and calls atEnd. // calls onProgress every time there is a progress update -function requestProgress(id_task, progressbarContainer, gallery, atEnd, onProgress){ +function requestProgress(id_task, progressbarContainer, gallery, atEnd, onProgress, inactivityTimeout=40){ var dateStart = new Date() var wasEverActive = false var parentProgressbar = progressbarContainer.parentNode @@ -138,7 +138,7 @@ function requestProgress(id_task, progressbarContainer, gallery, atEnd, onProgre return } - if(elapsedFromStart > 40 && !res.queued && !res.active){ + if(elapsedFromStart > inactivityTimeout && !res.queued && !res.active){ removeProgressBar() return } |