107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
this.clearLexicographer();
this.startWaitIcon();
xGrammalectePort.postMessage({
sCommand: "getListOfTokens",
dParam: {sText: this.oTextControl.getText()},
dInfo: ((this.xNode) ? {sTextAreaId: this.xNode.id} : {})
});
xGrammalectePort.postMessage({
sCommand: "parseFull",
dParam: {sText: this.oTextControl.getText(), sCountry: "FR", bDebug: false, bContext: false},
dInfo: ((this.xNode) ? {sTextAreaId: this.xNode.id} : {})
});
}
};
this.xConjButton.onclick = () => {
if (!this.bWorking) {
this.showConjugueur();
}
};
|
|
|
|
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
this.clearLexicographer();
this.startWaitIcon();
xGrammalectePort.postMessage({
sCommand: "getListOfTokens",
dParam: {sText: this.oTextControl.getText()},
dInfo: ((this.xNode) ? {sTextAreaId: this.xNode.id} : {})
});
/*xGrammalectePort.postMessage({
sCommand: "parseFull",
dParam: {sText: this.oTextControl.getText(), sCountry: "FR", bDebug: false, bContext: false},
dInfo: ((this.xNode) ? {sTextAreaId: this.xNode.id} : {})
});*/
}
};
this.xConjButton.onclick = () => {
if (!this.bWorking) {
this.showConjugueur();
}
};
|