Removed test console logging code from value function.

This commit is contained in:
Matt Mo 2020-09-01 08:29:45 -07:00
parent 2f3b7a9b28
commit 52077d1797

View File

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