aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts/main.coffee
diff options
context:
space:
mode:
authorStephen Blott2016-03-26 10:15:56 +0000
committerStephen Blott2016-03-26 10:18:32 +0000
commit5073fc3005b0cab3b44062d051311a704882d4d5 (patch)
tree6ac4f58d2144998235deb3ef38951378651cada1 /background_scripts/main.coffee
parentd25b2c6fb08d06b87f7bbe69a1bcfecd351c7c7f (diff)
downloadvimium-5073fc3005b0cab3b44062d051311a704882d4d5.tar.bz2
selected wasn't being used here.
Diffstat (limited to 'background_scripts/main.coffee')
-rw-r--r--background_scripts/main.coffee2
1 files changed, 1 insertions, 1 deletions
diff --git a/background_scripts/main.coffee b/background_scripts/main.coffee
index 04accd52..06788ee4 100644
--- a/background_scripts/main.coffee
+++ b/background_scripts/main.coffee
@@ -150,7 +150,7 @@ TabOperations =
openUrlInCurrentTab: (request) ->
chrome.tabs.update request.tabId, url: Utils.convertToUrl request.url
- # Opens request.url in new tab and switches to it if request.selected is true.
+ # Opens request.url in new tab and switches to it.
openUrlInNewTab: (request, callback = (->)) ->
tabConfig =
url: Utils.convertToUrl request.url