Differences From Artifact [ccdc2aeb0d]:
- File gc_lang/fr/webext/content_scripts/init.js — part of check-in [3cd8dde332] at 2017-09-06 17:40:22 on branch trunk — [fx] WebExt: remove wrapper around textareas, add button and menu (user: olr, size: 4171) [annotate] [blame] [check-ins using] [more...]
To Artifact [7ebb87820f]:
- File gc_lang/fr/webext/content_scripts/init.js — part of check-in [d7eb5a15ee] at 2017-09-15 08:16:13 on branch trunk — [core][fx] ibdawg: fix bugs, WebExt: retrieve spelling suggestion (user: olr, size: 4337) [annotate] [blame] [check-ins using]
| ︙ | |||
106 107 108 109 110 111 112 113 114 115 116 117 118 119 | 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | + + + |
case "getListOfTokens":
if (!bEnd) {
oGrammalecte.oLxgPanel.addListOfTokens(result);
} else {
oGrammalecte.oLxgPanel.stopWaitIcon();
}
break;
case "getSpellSuggestions":
oGrammalecte.oGCPanel.oTooltip.setSpellSuggestionsFor(result.sWord, result.aSugg, dInfo.sErrorId);
break;
// Design WTF: context menus are made in background, not in content-script.
// Commands from context menu received here to initialize panels
case "openGCPanel":
oGrammalecte.createGCPanel();
oGrammalecte.oGCPanel.clear();
oGrammalecte.oGCPanel.show();
oGrammalecte.oGCPanel.start();
|
| ︙ |