Differences From Artifact [dc636eef89]:
- File gc_lang/fr/webext/panel/main.js — part of check-in [6524138639] at 2017-08-29 09:49:33 on branch webext2 — [fx] default gc options (user: olr, size: 3870) [annotate] [blame] [check-ins using]
To Artifact [cfdce4f016]:
- File gc_lang/fr/webext/panel/main.js — part of check-in [327355a98f] at 2017-08-30 10:31:11 on branch webext2 — [fx] openURL in main panel (user: olr, size: 4000) [annotate] [blame] [check-ins using] [more...]
| ︙ | |||
41 42 43 44 45 46 47 48 49 50 51 52 53 54 | 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | + + + |
else if (xElem.id.startsWith("option_")) {
browser.runtime.sendMessage({
sCommand: "setOption",
dParam: {sOptName: xElem.dataset.option, bValue: xElem.checked},
dInfo: {}
});
}
else if (xElem.id.startsWith("link_")) {
browser.tabs.create({url: xElem.dataset.url});
}
} else if (xElem.className.startsWith("select")) {
showPage(xElem.dataset.page);
}/* else if (xElem.tagName === "A") {
openURL(xElem.getAttribute("href"));
}*/
},
false
|
| ︙ |