diff options
| -rw-r--r-- | background_scripts/main.coffee | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/background_scripts/main.coffee b/background_scripts/main.coffee index 3d3a59a6..d9229f12 100644 --- a/background_scripts/main.coffee +++ b/background_scripts/main.coffee @@ -178,7 +178,10 @@ copyToClipboard = (request) -> Clipboard.copy(request.data) # # Selects the tab with the ID specified in request.id # -selectSpecificTab = (request) -> chrome.tabs.update(request.id, { selected: true }) +selectSpecificTab = (request) -> + chrome.tabs.get(request.id, (tab) -> + chrome.windows.update(tab.windowId, { focused: true }) + chrome.tabs.update(request.id, { selected: true })) # # Used by the content scripts to get settings from the local storage. |
