Changed element.data to nodeValue since that is the official property.
This commit is contained in:
parent
812f8352f5
commit
ed49ad1392
@ -2511,12 +2511,12 @@ class text extends IgniteTemplate {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.element.data = this._text;
|
this.element.nodeValue = this._text;
|
||||||
}
|
}
|
||||||
|
|
||||||
onTextChanged(newValue) {
|
onTextChanged(newValue) {
|
||||||
if (this.element) {
|
if (this.element) {
|
||||||
this.element.data = newValue;
|
this.element.nodeValue = newValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
this._text = newValue;
|
this._text = newValue;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user