diff options
author | Dynamic <bradje@naver.com> | 2022-10-29 13:33:06 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-29 13:33:06 +0000 |
commit | 3d36d62d61425a2538270c489dc5fe827c125ad1 (patch) | |
tree | d3ebb7d5f5fa23f355a02288f0c645c102b8e6a0 /javascript/ui.js | |
parent | a668444110743cd163474ec563b0e69025dea3d2 (diff) | |
parent | 35c45df28b303a05d56a13cb56d4046f08cf8c25 (diff) | |
download | stable-diffusion-webui-gfx803-3d36d62d61425a2538270c489dc5fe827c125ad1.tar.gz stable-diffusion-webui-gfx803-3d36d62d61425a2538270c489dc5fe827c125ad1.tar.bz2 stable-diffusion-webui-gfx803-3d36d62d61425a2538270c489dc5fe827c125ad1.zip |
Merge branch 'AUTOMATIC1111:master' into kr-localization
Diffstat (limited to 'javascript/ui.js')
-rw-r--r-- | javascript/ui.js | 24 |
1 files changed, 2 insertions, 22 deletions
diff --git a/javascript/ui.js b/javascript/ui.js index cfd0dcd3..7e116465 100644 --- a/javascript/ui.js +++ b/javascript/ui.js @@ -45,14 +45,14 @@ function switch_to_txt2img(){ return args_to_array(arguments); } -function switch_to_img2img_img2img(){ +function switch_to_img2img(){ gradioApp().querySelector('#tabs').querySelectorAll('button')[1].click(); gradioApp().getElementById('mode_img2img').querySelectorAll('button')[0].click(); return args_to_array(arguments); } -function switch_to_img2img_inpaint(){ +function switch_to_inpaint(){ gradioApp().querySelector('#tabs').querySelectorAll('button')[1].click(); gradioApp().getElementById('mode_img2img').querySelectorAll('button')[1].click(); @@ -65,26 +65,6 @@ function switch_to_extras(){ return args_to_array(arguments); } -function extract_image_from_gallery_txt2img(gallery){ - switch_to_txt2img() - return extract_image_from_gallery(gallery); -} - -function extract_image_from_gallery_img2img(gallery){ - switch_to_img2img_img2img() - return extract_image_from_gallery(gallery); -} - -function extract_image_from_gallery_inpaint(gallery){ - switch_to_img2img_inpaint() - return extract_image_from_gallery(gallery); -} - -function extract_image_from_gallery_extras(gallery){ - switch_to_extras() - return extract_image_from_gallery(gallery); -} - function get_tab_index(tabId){ var res = 0 |