780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
|
const oSearch = {
oSpellChecker: null,
load: function () {
this.oSpellChecker = new SpellChecker("fr", browser.extension.getURL("")+"grammalecte/graphspell/_dictionaries", "fr-allvars.json");
},
loadOtherDictionaries: function () {
//TODO
},
listen: function () {
|
|
|
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
|
const oSearch = {
oSpellChecker: null,
load: function () {
this.oSpellChecker = new SpellChecker("fr", browser.runtime.getURL("")+"grammalecte/graphspell/_dictionaries", "fr-allvars.json");
},
loadOtherDictionaries: function () {
//TODO
},
listen: function () {
|