k icon indicating copy to clipboard operation
k copied to clipboard

"super + `" doesn't seem to trigger on Firefox

Open TooTallNate opened this issue 11 years ago • 1 comments

Works fine on Chrome. But on Firefox the registered callback function is never triggered if "super + `" is used.

TooTallNate avatar Jul 21 '14 20:07 TooTallNate

so weird, when command is down and you hit ``` nothing happens in firefox:

window.onkeydown = function(e){
  console.log('key: %s', e.which);
};

try holding command and hit ```

yields avatar Nov 23 '14 12:11 yields