diff options
Diffstat (limited to 'background_scripts')
| -rw-r--r-- | background_scripts/main.coffee | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/background_scripts/main.coffee b/background_scripts/main.coffee index 72f87a7e..13f88157 100644 --- a/background_scripts/main.coffee +++ b/background_scripts/main.coffee @@ -467,7 +467,7 @@ do showUpgradeMessage = ->              Settings.set "previousVersion", currentVersion              chrome.notifications.onClicked.addListener (id) ->                if id == notificationId -                chrome.tabs.getSelected null, (tab) -> +                chrome.tabs.query { active: true, currentWindow: true }, ([tab]) ->                    TabOperations.openUrlInNewTab {tab, tabId: tab.id, url: "https://github.com/philc/vimium#release-notes"}        else          # We need to wait for the user to accept the "notifications" permission. | 
