diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-11-05 09:47:30 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-11-11 20:34:31 +0900 |
commit | 036ede3379285cbe678d79aad3b9442dca8b31e6 (patch) | |
tree | e97e4a8a1713c7540db0d3ff82ab0964104d3bad /src/content/components/common/follow.js | |
parent | 4e94695c758215a950fe53911e1c1e30e47b9c98 (diff) |
support mutliple modifiers for key bindings
Diffstat (limited to 'src/content/components/common/follow.js')
-rw-r--r-- | src/content/components/common/follow.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content/components/common/follow.js b/src/content/components/common/follow.js index 83aeb0a..7a35105 100644 --- a/src/content/components/common/follow.js +++ b/src/content/components/common/follow.js @@ -46,7 +46,7 @@ export default class Follow { } this.win.parent.postMessage(JSON.stringify({ type: messages.FOLLOW_KEY_PRESS, - key, + key: key.key, }), '*'); return true; } |