605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
|
const oSearch = {
oSpellChecker: null,
load: function () {
this.oSpellChecker = new SpellChecker("fr", browser.extension.getURL("")+"grammalecte/graphspell/_dictionaries", "fr.json");
},
loadOtherDictionaries: function () {
//TODO
},
listen: function () {
|
|
|
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
|
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 () {
|