jh-changes
Shin'ya Ueoka 7 years ago
parent 941073404b
commit c2a663a64d
  1. 9
      src/content/components/common/input.js

@ -47,17 +47,14 @@ export default class InputComponent {
return;
}
let stop = false;
for (let listener of this.onKeyListeners) {
stop = stop || listener(e.key, e.ctrlKey);
let stop = listener(e.key, e.ctrlKey);
if (stop) {
e.preventDefault();
e.stopPropagation();
break;
}
}
if (stop) {
e.preventDefault();
e.stopPropagation();
}
}
fromInput(e) {