78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
else if (xElem.id.startsWith("spelling_")) {
updateSpellingChoiceUI(xElem.id);
let sMainDicName = document.getElementById(xElem.id).dataset.dicname;
browser.storage.local.set({"main_dic_name": sMainDicName});
browser.runtime.sendMessage({
sCommand: "setDictionary",
oParam: { sDictionary: "main", oDict: sMainDicName },
oInfo: { sExtPath: browser.extension.getURL("") }
});
}
// UI options
else if (xElem.id.startsWith("ui_option_")) {
storeUIOptions();
}
//
|
|
|
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
else if (xElem.id.startsWith("spelling_")) {
updateSpellingChoiceUI(xElem.id);
let sMainDicName = document.getElementById(xElem.id).dataset.dicname;
browser.storage.local.set({"main_dic_name": sMainDicName});
browser.runtime.sendMessage({
sCommand: "setDictionary",
oParam: { sDictionary: "main", oDict: sMainDicName },
oInfo: { sExtPath: browser.runtime.getURL("") }
});
}
// UI options
else if (xElem.id.startsWith("ui_option_")) {
storeUIOptions();
}
//
|