From 8fa6f3f45c30abe79286eda2142475bf51c453f1 Mon Sep 17 00:00:00 2001 From: n1474335 Date: Tue, 5 Sep 2017 16:51:57 +0000 Subject: [PATCH] Fixed bug where clicking up and down arrows on numeric inputs would not trigger an auto-bake --- src/web/Manager.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/web/Manager.js b/src/web/Manager.js index 0948af10..1942bc5a 100755 --- a/src/web/Manager.js +++ b/src/web/Manager.js @@ -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);