Fixed a bug with newValue on the template.
This commit is contained in:
parent
3eaf3b136a
commit
653abb3aec
@ -188,7 +188,7 @@ class IgniteTemplate {
|
|||||||
if (this.element.hasAttribute("contenteditable") && this.element.getAttribute("contenteditable").toLowerCase().trim() == "true") {
|
if (this.element.hasAttribute("contenteditable") && this.element.getAttribute("contenteditable").toLowerCase().trim() == "true") {
|
||||||
newValue = this.element.textContent;
|
newValue = this.element.textContent;
|
||||||
} else {
|
} else {
|
||||||
neValue = this.element.value;
|
newValue = this.element.value;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (reflect instanceof Function) {
|
if (reflect instanceof Function) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user