diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-01-15 20:22:51 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-01-15 20:23:24 +0000 |
commit | fc25af3939f0366f147892a8ae5b9da56495352b (patch) | |
tree | 0468bc787815c2f8406a9d1ab949394c790ac5a1 | |
parent | f3167b10cefc259c48a2ca00e078a3fdfa5d6e36 (diff) | |
download | stable-diffusion-webui-gfx803-fc25af3939f0366f147892a8ae5b9da56495352b.tar.gz stable-diffusion-webui-gfx803-fc25af3939f0366f147892a8ae5b9da56495352b.tar.bz2 stable-diffusion-webui-gfx803-fc25af3939f0366f147892a8ae5b9da56495352b.zip |
remove unneeded log from progressbar
-rw-r--r-- | javascript/progressbar.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/javascript/progressbar.js b/javascript/progressbar.js index 59173c83..5072c13f 100644 --- a/javascript/progressbar.js +++ b/javascript/progressbar.js @@ -139,8 +139,6 @@ function requestProgress(id_task, progressbarContainer, gallery, atEnd, onProgre var fun = function(id_task, id_live_preview){ request("/internal/progress", {"id_task": id_task, "id_live_preview": id_live_preview}, function(res){ - console.log(res) - if(res.completed){ removeProgressBar() return |