1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
|
this.xNode.removeChild(this.xNode.firstChild);
}
}
write () {
if (this.xNode !== null) {
if (this.bResultInEvent) {
const xEvent = new CustomEvent("GrammalecteResult", { detail: JSON.stringify({ text: this.getText() }) });
this.xNode.dispatchEvent(xEvent);
//console.log("Text sent via an event :", xEvent.detail);
}
else if (this.bTextArea) {
this.xNode.value = this.getText();
}
else if (this.bIframe) {
|
|
|
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
|
this.xNode.removeChild(this.xNode.firstChild);
}
}
write () {
if (this.xNode !== null) {
if (this.bResultInEvent) {
const xEvent = new CustomEvent("GrammalecteResult", { detail: JSON.stringify({ sType: "text", sText: this.getText() }) });
this.xNode.dispatchEvent(xEvent);
//console.log("Text sent via an event :", xEvent.detail);
}
else if (this.bTextArea) {
this.xNode.value = this.getText();
}
else if (this.bIframe) {
|