Commit 21679435 authored by DepFA's avatar DepFA Committed by AUTOMATIC1111

implement removal

parent 83749bfc
...@@ -79,7 +79,13 @@ contextMenuInit = function(){ ...@@ -79,7 +79,13 @@ contextMenuInit = function(){
} }
function removeContextMenuOption(uid){ function removeContextMenuOption(uid){
menuSpecs.forEach(function(v,k) {
let index = -1
v.forEach(function(e,ei){if(e['id']==uid){index=ei}})
if(index>=0){
v.splice(index, 1);
}
})
} }
function addContextMenuEventListener(){ function addContextMenuEventListener(){
...@@ -148,7 +154,8 @@ cancelGenerateForever = function(){ ...@@ -148,7 +154,8 @@ cancelGenerateForever = function(){
} }
appendContextMenuOption('#txt2img_interrupt','Cancel generate forever',cancelGenerateForever) appendContextMenuOption('#txt2img_interrupt','Cancel generate forever',cancelGenerateForever)
appendContextMenuOption('#txt2img_generate','Cancel generate forever',cancelGenerateForever) appendContextMenuOption('#txt2img_generate', 'Cancel generate forever',cancelGenerateForever)
appendContextMenuOption('#roll','Roll three', appendContextMenuOption('#roll','Roll three',
function(){ function(){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment