diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2022-11-27 15:48:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-27 15:48:29 +0000 |
commit | 9e8c4e2c7f445aba01f11a884b4e4231b1810909 (patch) | |
tree | 9bf2130679e0e6cc0c595c0031f3a3ef1d1900ab | |
parent | 89d8804768d4479d72d24ebbbd2bd00650ef5dc7 (diff) | |
parent | 471189743a5f3dd7a5c822e63aad28f950abbd94 (diff) | |
download | stable-diffusion-webui-gfx803-9e8c4e2c7f445aba01f11a884b4e4231b1810909.tar.gz stable-diffusion-webui-gfx803-9e8c4e2c7f445aba01f11a884b4e4231b1810909.tar.bz2 stable-diffusion-webui-gfx803-9e8c4e2c7f445aba01f11a884b4e4231b1810909.zip |
Merge pull request #4894 from morgil/progress-first-in-title
Move progress info to beginning of site title
-rw-r--r-- | javascript/progressbar.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/javascript/progressbar.js b/javascript/progressbar.js index 671fde34..43d1d1ce 100644 --- a/javascript/progressbar.js +++ b/javascript/progressbar.js @@ -23,7 +23,7 @@ function check_progressbar(id_part, id_progressbar, id_progressbar_span, id_skip if(opts.show_progress_in_title && progressbar && progressbar.offsetParent){ if(progressbar.innerText){ - let newtitle = 'Stable Diffusion - ' + progressbar.innerText + let newtitle = '[' + progressbar.innerText.trim() + '] Stable Diffusion'; if(document.title != newtitle){ document.title = newtitle; } |