Firefox-Plugin-Template/src/scripts/events.js

7 lines
142 B
JavaScript
Raw Normal View History

2020-05-02 11:29:14 +00:00
document.addEventListener("click", (e) => {
if (e.button == 0) { // Left click
if (e.target.tagName == "") {
}
}
});