aboutsummaryrefslogtreecommitdiff
path: root/javascript/progressbar.js
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2023-04-29 22:23:21 +0300
committerAUTOMATIC <16777216c@gmail.com>2023-04-29 22:23:21 +0300
commite23063610f4695ce12f963e06e78154f5ce128d1 (patch)
treeeeab6971022d4ee0e1bfd6a8b603b0e950a6c868 /javascript/progressbar.js
parent22bcc7be428c94e9408f589966c2040187245d81 (diff)
parentcd7f2b19f45a28c8eeb88994c8972c61c8a3c63d (diff)
Merge branch 'dev' into release_candidate
Diffstat (limited to 'javascript/progressbar.js')
-rw-r--r--javascript/progressbar.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/javascript/progressbar.js b/javascript/progressbar.js
index 4ac9b8db..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 > 5 && !res.queued && !res.active){
+ if(elapsedFromStart > inactivityTimeout && !res.queued && !res.active){
removeProgressBar()
return
}