129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
this.bWorking = false;
this.clear();
if (xNode) {
this.oNodeControl.setNode(xNode);
if (!(xNode.tagName == "TEXTAREA" || xNode.tagName == "INPUT")) {
this.addMessage("Note : cette zone de texte n’est pas un champ de formulaire “textarea” mais un node HTML éditable. Une telle zone de texte est susceptible de contenir des éléments non textuels qui seront effacés lors de la correction.");
}
}
}
recheckAll () {
this.oTooltip.hide();
this.clear();
this.startWaitIcon();
|
>
>
|
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
this.bWorking = false;
this.clear();
if (xNode) {
this.oNodeControl.setNode(xNode);
if (!(xNode.tagName == "TEXTAREA" || xNode.tagName == "INPUT")) {
this.addMessage("Note : cette zone de texte n’est pas un champ de formulaire “textarea” mais un node HTML éditable. Une telle zone de texte est susceptible de contenir des éléments non textuels qui seront effacés lors de la correction.");
}
} else {
this.oNodeControl.clear();
}
}
recheckAll () {
this.oTooltip.hide();
this.clear();
this.startWaitIcon();
|
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
|
this.xNode.value = sText.slice(0,-1).normalize("NFC");
} else {
this.eraseContent();
this.dParagraph.forEach((val, key) => {
this.xNode.appendChild(document.createTextNode(val.normalize("NFC")));
this.xNode.appendChild(document.createElement("br"));
});
/*
this.dParagraph.forEach(function (val, key) {
sText += val + "<br/>";
});
this.xNode.innerHTML = sText.normalize("NFC");
*/
}
}
}
}
|
<
<
<
<
<
<
|
932
933
934
935
936
937
938
939
940
941
942
|
this.xNode.value = sText.slice(0,-1).normalize("NFC");
} else {
this.eraseContent();
this.dParagraph.forEach((val, key) => {
this.xNode.appendChild(document.createTextNode(val.normalize("NFC")));
this.xNode.appendChild(document.createElement("br"));
});
}
}
}
}
|