Differences From Artifact [42d1c08018]:
- File gc_lang/fr/webext/panel/main.js — part of check-in [1a047a0b91] at 2019-04-03 14:52:53 on branch trunk — [fx] remove access to community dictionaries (user: olr, size: 8180) [annotate] [blame] [check-ins using]
To Artifact [3c0ad50206]:
- File gc_lang/fr/webext/panel/main.js — part of check-in [7bf95d9332] at 2019-08-10 10:56:05 on branch trunk — [fx] buttons to stop and restart the worker (user: olr, size: 8440) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
}
else if (xElem.id == "dic_personal_button") {
browser.runtime.sendMessage({
sCommand: "openLexiconEditor",
dParam: { "dictionary": "__personal__"},
dInfo: {}
});
}
} else if (xElem.className.startsWith("select")) {
showPage(xElem.dataset.page);
}/* else if (xElem.tagName === "A") {
openURL(xElem.getAttribute("href"));
}*/
},
| > > > > > > > | 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
}
else if (xElem.id == "dic_personal_button") {
browser.runtime.sendMessage({
sCommand: "openLexiconEditor",
dParam: { "dictionary": "__personal__"},
dInfo: {}
});
}
else if (xElem.id == "restart_worker") {
browser.runtime.sendMessage({
sCommand: "restartWorker",
dParam: { "nDelayLimit": 3 },
dInfo: {}
});
}
} else if (xElem.className.startsWith("select")) {
showPage(xElem.dataset.page);
}/* else if (xElem.tagName === "A") {
openURL(xElem.getAttribute("href"));
}*/
},
|
| ︙ | ︙ |