From 67b4bd60a041fdc9e30fc24309bb0b67093418b0 Mon Sep 17 00:00:00 2001 From: MattMo Date: Tue, 11 May 2021 22:32:46 -0700 Subject: [PATCH] Removing timeout from keyup, causing issues with value. --- ignite-template.js | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/ignite-template.js b/ignite-template.js index aa27d21..06123e0 100644 --- a/ignite-template.js +++ b/ignite-template.js @@ -176,13 +176,7 @@ class IgniteTemplate { this._callbacks.push(value.attachOnSplice((list, start, deleteCount, items) => this.onValueChanged((converter != null ? converter(list) : null)))); if (reflect != null && ((typeof (reflect) == "boolean" && reflect == true) || reflect instanceof Function)) { - var keyUpDelay = null; var valueChanged = () => { - if (keyUpDelay) { - clearTimeout(keyUpDelay); - keyUpDelay = null; - } - var newValue = null; var type = this.element.hasAttribute("type") ? this.element.getAttribute("type").toLowerCase().trim() : null; @@ -209,11 +203,7 @@ class IgniteTemplate { }; this.on("change", valueChanged); - this.on("keyup", () => { - if (!keyUpDelay) { - keyUpDelay = setTimeout(valueChanged, 300); - } - }); + this.on("keyup", valueChanged); } this._elementValue = (converter != null ? converter(value.value) : value.value);