Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
S
Stable Diffusion Webui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
novelai-storage
Stable Diffusion Webui
Commits
bb91bb5e
Commit
bb91bb5e
authored
Aug 19, 2023
by
AUTOMATIC1111
Committed by
GitHub
Aug 19, 2023
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #12662 from bluelovers/bluelovers-patch-1-1
refactor: Update ui.js
parents
541ef924
1631e96a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
19 deletions
+2
-19
javascript/ui.js
javascript/ui.js
+2
-19
No files found.
javascript/ui.js
View file @
bb91bb5e
...
...
@@ -19,28 +19,11 @@ function all_gallery_buttons() {
}
function
selected_gallery_button
()
{
var
allCurrentButtons
=
gradioApp
().
querySelectorAll
(
'
[style="display: block;"].tabitem div[id$=_gallery].gradio-gallery .thumbnail-item.thumbnail-small.selected
'
);
var
visibleCurrentButton
=
null
;
allCurrentButtons
.
forEach
(
function
(
elem
)
{
if
(
elem
.
parentElement
.
offsetParent
)
{
visibleCurrentButton
=
elem
;
}
});
return
visibleCurrentButton
;
return
all_gallery_buttons
().
find
(
elem
=>
elem
.
classList
.
contains
(
'
selected
'
))
??
null
;
}
function
selected_gallery_index
()
{
var
buttons
=
all_gallery_buttons
();
var
button
=
selected_gallery_button
();
var
result
=
-
1
;
buttons
.
forEach
(
function
(
v
,
i
)
{
if
(
v
==
button
)
{
result
=
i
;
}
});
return
result
;
return
all_gallery_buttons
().
findIndex
(
elem
=>
elem
.
classList
.
contains
(
'
selected
'
));
}
function
extract_image_from_gallery
(
gallery
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment