diff options
| author | Stephen Blott | 2016-03-26 10:15:56 +0000 |
|---|---|---|
| committer | Stephen Blott | 2016-03-26 10:18:32 +0000 |
| commit | 5073fc3005b0cab3b44062d051311a704882d4d5 (patch) | |
| tree | 6ac4f58d2144998235deb3ef38951378651cada1 /content_scripts | |
| parent | d25b2c6fb08d06b87f7bbe69a1bcfecd351c7c7f (diff) | |
| download | vimium-5073fc3005b0cab3b44062d051311a704882d4d5.tar.bz2 | |
selected wasn't being used here.
Diffstat (limited to 'content_scripts')
| -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 ade14029..66eebfdd 100644 --- a/content_scripts/vimium_frontend.coffee +++ b/content_scripts/vimium_frontend.coffee @@ -313,7 +313,7 @@ extend window, url = url.substr(12, url.length - 12) else url = "view-source:" + url - chrome.runtime.sendMessage({ handler: "openUrlInNewTab", url: url, selected: true }) + chrome.runtime.sendMessage {handler: "openUrlInNewTab", url} copyCurrentUrl: -> # TODO(ilya): When the following bug is fixed, revisit this approach of sending back to the background |
