Differences From Artifact [27ba96b762]:
- File gc_lang/fr/webext/content_scripts/panel_gc.js — part of check-in [f3750381d4] at 2019-05-25 12:14:00 on branch trunk — [fx][bug] text formatter: fix restructuration (user: olr, size: 52379) [annotate] [blame] [check-ins using]
To Artifact [1dc7543800]:
- File gc_lang/fr/webext/content_scripts/panel_gc.js — part of check-in [7d507ee195] at 2019-05-25 15:00:20 on branch trunk — [fx] new command: parseFull (draft) (user: olr, size: 52681) [annotate] [blame] [check-ins using]
| ︙ | |||
107 108 109 110 111 112 113 114 115 116 117 118 119 120 | 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();
}
};
|
| ︙ |