183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
|
dInfo: {sTextAreaId: xRightClickedNode.id}
});
break;
case "rightClickGCPage":
oGrammalecte.startGCPanel();
xGrammalectePort.postMessage({
sCommand: "parseAndSpellcheck",
dParam: {sText: "je test", sCountry: "FR", bDebug: false, bContext: false},
dInfo: {sTextAreaId: xRightClickedNode.id}
});
break;
case "rightClickGCSelectedText":
oGrammalecte.startGCPanel();
// selected text is sent to the GC worker in the background script.
break;
|
|
|
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
|
dInfo: {sTextAreaId: xRightClickedNode.id}
});
break;
case "rightClickGCPage":
oGrammalecte.startGCPanel();
xGrammalectePort.postMessage({
sCommand: "parseAndSpellcheck",
dParam: {sText: document.body.textContent, sCountry: "FR", bDebug: false, bContext: false},
dInfo: {sTextAreaId: xRightClickedNode.id}
});
break;
case "rightClickGCSelectedText":
oGrammalecte.startGCPanel();
// selected text is sent to the GC worker in the background script.
break;
|
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
|
dInfo: {sTextAreaId: xRightClickedNode.id}
});
break;
case "rightClickLxgPage":
oGrammalecte.startLxgPanel();
xGrammalectePort.postMessage({
sCommand: "getListOfTokens",
dParam: {sText: "Je teste."},
dInfo: {sTextAreaId: xRightClickedNode.id}
});
break;
case "rightClickLxgSelectedText":
oGrammalecte.startLxgPanel();
// selected text is sent to the GC worker in the background script.
break;
|
|
|
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
|
dInfo: {sTextAreaId: xRightClickedNode.id}
});
break;
case "rightClickLxgPage":
oGrammalecte.startLxgPanel();
xGrammalectePort.postMessage({
sCommand: "getListOfTokens",
dParam: {sText: document.body.textContent},
dInfo: {sTextAreaId: xRightClickedNode.id}
});
break;
case "rightClickLxgSelectedText":
oGrammalecte.startLxgPanel();
// selected text is sent to the GC worker in the background script.
break;
|