diff options
| author | Stephen Blott | 2015-05-29 10:33:30 +0100 |
|---|---|---|
| committer | Stephen Blott | 2015-05-29 10:33:30 +0100 |
| commit | bd3cf0386a88d5878ee352c4d0c80005eaf2a93a (patch) | |
| tree | 9493deda31459bd435b2c0bec4d754c23dc3a4ff | |
| parent | 17e233a2bdbb725a14b9aa363ed659a5bd9feeb2 (diff) | |
| download | vimium-bd3cf0386a88d5878ee352c4d0c80005eaf2a93a.tar.bz2 | |
Pass the command's registry entry to vomnibar commands.
| -rw-r--r-- | content_scripts/vimium_frontend.coffee | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content_scripts/vimium_frontend.coffee b/content_scripts/vimium_frontend.coffee index 6b27924d..8c6dd374 100644 --- a/content_scripts/vimium_frontend.coffee +++ b/content_scripts/vimium_frontend.coffee @@ -307,7 +307,7 @@ executePageCommand = (request) -> if DomUtils.isTopFrame() # We pass the frameId from request. That's the frame which originated the request, so that's the frame # which should receive the focus when the vomnibar closes. - Utils.invokeCommandString request.command, [ request.frameId ] + Utils.invokeCommandString request.command, [ request.frameId, request.registryEntry ] refreshCompletionKeys request return |
