1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
|
write () {
if (this.xNode !== null) {
if (this.bResultInEvent) {
const xEvent = new CustomEvent("GrammalecteNodeContentUpdated", {
detail: { text: [...this.dParagraph.values()].join("\n").normalize("NFC") }
});
this.xNode.dispatchEvent(xEvent);
console.log("event", xEvent.detail.text);
}
else if (this.bTextArea) {
this.xNode.value = this.getText();
}
else {
this.eraseNodeContent();
this.dParagraph.forEach((val, key) => {
|
|
|
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
|
write () {
if (this.xNode !== null) {
if (this.bResultInEvent) {
const xEvent = new CustomEvent("GrammalecteNodeContentUpdated", {
detail: { text: [...this.dParagraph.values()].join("\n").normalize("NFC") }
});
this.xNode.dispatchEvent(xEvent);
//console.log("event", xEvent.detail.text);
}
else if (this.bTextArea) {
this.xNode.value = this.getText();
}
else {
this.eraseNodeContent();
this.dParagraph.forEach((val, key) => {
|