downthemall/windows/popup.ts
2019-10-02 14:24:36 +02:00

38 lines
766 B
TypeScript

"use strict";
// License: MIT
import { localize } from "../lib/i18n";
import "./theme";
declare let browser: any;
declare let chrome: any;
const runtime = typeof 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);
});