mirror of
https://github.com/gchq/CyberChef
synced 2024-12-26 04:23:10 +00:00
Fixed bug where clicking up and down arrows on numeric inputs would not trigger an auto-bake
This commit is contained in:
parent
78a842deb7
commit
8fa6f3f45c
1 changed files with 1 additions and 0 deletions
|
@ -118,6 +118,7 @@ Manager.prototype.initialiseEventListeners = function() {
|
|||
// Recipe
|
||||
this.addDynamicListener(".arg", "keyup", this.recipe.ingChange, this.recipe);
|
||||
this.addDynamicListener(".arg", "change", this.recipe.ingChange, this.recipe);
|
||||
this.addDynamicListener(".arg", "input", this.recipe.ingChange, this.recipe);
|
||||
this.addDynamicListener(".disable-icon", "click", this.recipe.disableClick, this.recipe);
|
||||
this.addDynamicListener(".breakpoint", "click", this.recipe.breakpointClick, this.recipe);
|
||||
this.addDynamicListener("#rec-list li.operation", "dblclick", this.recipe.operationDblclick, this.recipe);
|
||||
|
|
Loading…
Reference in a new issue