aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.markdown3
-rw-r--r--background_page.html1
2 files changed, 3 insertions, 1 deletions
diff --git a/README.markdown b/README.markdown
index 42b0f3ec..2e7c431a 100644
--- a/README.markdown
+++ b/README.markdown
@@ -44,7 +44,8 @@ Navigating the current page:
n cycle forward to the next find match
N cycle backward to the previous find match
i enter insert mode -- all commands will be ignored until you hit esc to exit
- y copy the current url to the clipboard
+ yy copy the current url to the clipboard
+ gu go up one level in the URL hierarchy
Navigating your history:
H go back in history
diff --git a/background_page.html b/background_page.html
index 0f923869..1109b0e0 100644
--- a/background_page.html
+++ b/background_page.html
@@ -573,6 +573,7 @@
// case for new installs.
if (!localStorage.previousVersion)
localStorage.previousVersion = currentVersion;
+ console.log("previousVersion: " + localStorage.previousVersion);
return compareVersions(currentVersion, localStorage.previousVersion) == 1;
}