Removed test console logging code from value function.
This commit is contained in:
parent
2f3b7a9b28
commit
52077d1797
@ -120,13 +120,11 @@ class IgniteTemplate {
|
||||
if (reflect) {
|
||||
this.on("change", (event) => {
|
||||
var newValue = (this.element.hasAttribute("type") && this.element.getAttribute("type").toLowerCase().trim() == "checkbox" ? this.element.checked : this.element.value);
|
||||
console.log("Element change triggered, setting new value:", newValue);
|
||||
value.setValue(newValue, true);
|
||||
});
|
||||
|
||||
this.on("keyup", (event) => {
|
||||
var newValue = (this.element.hasAttribute("type") && this.element.getAttribute("type").toLowerCase().trim() == "checkbox" ? this.element.checked : this.element.value);
|
||||
console.log("Element keyup triggered, setting new value:", newValue);
|
||||
value.setValue(newValue, true);
|
||||
});
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user