ignore input-element

jh-changes
Shin'ya Ueoka 7 years ago
parent 3c1b33add3
commit bbc8ff515e
  1. 4
      src/content/index.js

@ -16,6 +16,10 @@ const invokeEvent = (action) => {
}
window.addEventListener("keydown", (e) => {
if (e.target instanceof HTMLInputElement) {
return;
}
let request = {
type: 'event.keydown',
code: e.keyCode,