Value onKeyUp now gets reset if the value changed before the keyup event fired.

This commit is contained in:
MattMo 2021-05-05 03:09:13 -07:00
parent ad435e7098
commit 1dae4ecece

View File

@ -178,7 +178,11 @@ class IgniteTemplate {
if (reflect != null && ((typeof (reflect) == "boolean" && reflect == true) || reflect instanceof Function)) {
var keyUpDelay = null;
var valueChanged = () => {
keyUpDelay = null;
if (keyUpDelay) {
clearTimeout(keyUpDelay);
keyUpDelay = null;
}
var newValue = null;
var type = this.element.hasAttribute("type") ? this.element.getAttribute("type").toLowerCase().trim() : null;