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
77bd953d
Commit
77bd953d
authored
Oct 15, 2023
by
Khachatur Avanesian
Committed by
GitHub
Oct 15, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update script.js
Exclude lambda
parent
f00eaa4d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
10 deletions
+12
-10
script.js
script.js
+12
-10
No files found.
script.js
View file @
77bd953d
...
@@ -123,23 +123,25 @@ document.addEventListener("DOMContentLoaded", function() {
...
@@ -123,23 +123,25 @@ document.addEventListener("DOMContentLoaded", function() {
/**
/**
* Add a Ctrl (Alt) + Enter as a shortcut to start / restart a generation
* Add a Ctrl (Alt) + Enter as a shortcut to start / restart a generation
*/
*/
document
.
addEventListener
(
'
keydown
'
,
(
e
)
=>
{
document
.
addEventListener
(
'
keydown
'
,
function
(
e
)
{
const
isEnter
=
e
.
key
===
'
Enter
'
||
e
.
keyCode
===
13
const
isEnter
=
e
.
key
===
'
Enter
'
||
e
.
keyCode
===
13
;
const
isModifierKey
=
e
.
metaKey
||
e
.
ctrlKey
||
e
.
altKey
const
isModifierKey
=
e
.
metaKey
||
e
.
ctrlKey
||
e
.
altKey
;
const
interruptButton
=
get_uiCurrentTabContent
().
querySelector
(
'
button[id$=_interrupt]
'
)
const
interruptButton
=
get_uiCurrentTabContent
().
querySelector
(
'
button[id$=_interrupt]
'
)
;
const
generateButton
=
get_uiCurrentTabContent
().
querySelector
(
'
button[id$=_generate]
'
)
const
generateButton
=
get_uiCurrentTabContent
().
querySelector
(
'
button[id$=_generate]
'
)
;
if
(
isEnter
&&
isModifierKey
)
{
if
(
isEnter
&&
isModifierKey
)
{
if
(
interruptButton
.
style
.
display
===
'
block
'
)
{
if
(
interruptButton
.
style
.
display
===
'
block
'
)
{
interruptButton
.
click
()
interruptButton
.
click
();
setTimeout
(()
=>
generateButton
.
click
(),
500
)
setTimeout
(
function
()
{
generateButton
.
click
();
},
500
);
}
else
{
}
else
{
generateButton
.
click
()
generateButton
.
click
()
;
}
}
e
.
preventDefault
()
e
.
preventDefault
()
;
}
}
})
})
;
/**
/**
* checks that a UI element is not in another hidden element or tab content
* checks that a UI element is not in another hidden element or tab content
...
...
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