aboutsummaryrefslogtreecommitdiffstats
path: root/popup.js
diff options
context:
space:
mode:
authorDaniel MacDougall2012-08-20 00:49:28 -0700
committerDaniel MacDougall2012-08-20 00:49:28 -0700
commit04c55f40e179fd96d7a5c673c46d074a9c1dd13b (patch)
treee10a5b975223e0c1a2068380d8f49e3283221942 /popup.js
parent3001bdc53c160c3606ef6903d71db675f4ffcb9a (diff)
downloadvimium-04c55f40e179fd96d7a5c673c46d074a9c1dd13b.tar.bz2
Fix options link broken by 486ba68a42e2ba7b96a7a14b0ae34aca7ac7e780
Diffstat (limited to 'popup.js')
-rw-r--r--popup.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/popup.js b/popup.js
index 859f30f3..2c98e6ab 100644
--- a/popup.js
+++ b/popup.js
@@ -1,5 +1,5 @@
function onLoad() {
- document.getElementById("optionsLink").setAttribute("href", chrome.extension.getURL("options.html"));
+ document.getElementById("optionsLink").setAttribute("href", chrome.extension.getURL("options/options.html"));
chrome.tabs.getSelected(null, function(tab) {
// The common use case is to disable Vimium at the domain level.
// This regexp will match "http://www.example.com/" from "http://www.example.com/path/to/page.html".