fix yomichan menu on Firefox Android

This commit is contained in:
siikamiika 2019-11-29 02:58:17 +02:00
parent 8a94d186c3
commit e3d96eb67d

View File

@ -26,7 +26,8 @@ function showExtensionInfo() {
}
function setupButtonEvents(selector, command, url) {
const node = document.querySelector(selector);
const nodes = document.querySelectorAll(selector);
for (const node of nodes) {
node.addEventListener('click', (e) => {
if (e.button !== 0) { return; }
apiCommandExec(command, {newTab: e.ctrlKey});
@ -44,6 +45,7 @@ function setupButtonEvents(selector, command, url) {
node.rel = 'noopener';
}
}
}
window.addEventListener('DOMContentLoaded', () => {
showExtensionInfo();