Fixed bug where clicking up and down arrows on numeric inputs would not trigger an auto-bake

This commit is contained in:
n1474335 2017-09-05 16:51:57 +00:00
parent 78a842deb7
commit 8fa6f3f45c
1 changed files with 1 additions and 0 deletions

View File

@ -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);