diff options
| author | Jez Ng | 2012-08-20 23:59:35 -0700 | 
|---|---|---|
| committer | Jez Ng | 2012-08-20 23:59:35 -0700 | 
| commit | c4405f36b3df39a47d4c1dac329da456cf2d7e62 (patch) | |
| tree | d3b3e7c89c1259e377de97b6813456868669abd9 /background_scripts | |
| parent | d20ef2ea16026bd611e95648f0f55aae95946d97 (diff) | |
| download | vimium-c4405f36b3df39a47d4c1dac329da456cf2d7e62.tar.bz2 | |
Point options link in help dialog to new location.
Diffstat (limited to 'background_scripts')
| -rw-r--r-- | background_scripts/main.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/background_scripts/main.js b/background_scripts/main.js index 5f5df508..6e6a3978 100644 --- a/background_scripts/main.js +++ b/background_scripts/main.js @@ -660,7 +660,7 @@ function shouldShowUpgradeMessage() {  function openOptionsPageInNewTab() {    chrome.tabs.getSelected(null, function(tab) { -    chrome.tabs.create({ url: chrome.extension.getURL("options.html"), index: tab.index + 1 }); +    chrome.tabs.create({ url: chrome.extension.getURL("options/options.html"), index: tab.index + 1 });    });  } | 
