downthemall/windows/popup.ts
2019-08-26 20:40:20 +02:00

35 lines
737 B
TypeScript

"use strict";
// License: MIT
import { localize } from "../lib/i18n";
declare let browser: any;
declare let chrome: any;
const runtime = browser !== "undefined" ? browser.runtime : chrome.runtime;
function handler(e: Event) {
e.preventDefault();
let target = e.target as HTMLElement;
if (!target) {
return;
}
while (target) {
const {action} = target.dataset;
if (!action) {
target = target.parentElement as HTMLElement;
continue;
}
runtime.sendMessage(action);
close();
return;
}
}
addEventListener("DOMContentLoaded", () => {
localize(document.documentElement);
document.body.addEventListener("contextmenu", handler);
document.body.addEventListener("click", handler);
});