aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJez Ng2012-08-20 23:59:35 -0700
committerJez Ng2012-08-20 23:59:35 -0700
commitc4405f36b3df39a47d4c1dac329da456cf2d7e62 (patch)
treed3b3e7c89c1259e377de97b6813456868669abd9
parentd20ef2ea16026bd611e95648f0f55aae95946d97 (diff)
downloadvimium-c4405f36b3df39a47d4c1dac329da456cf2d7e62.tar.bz2
Point options link in help dialog to new location.
-rw-r--r--background_scripts/main.js2
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 });
});
}