summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-01-19 10:54:17 +0100
committerAndrew Dolgov <[email protected]>2007-01-19 10:54:17 +0100
commit50a2595d406a9756cccc8aa652f97fb0760cde92 (patch)
tree8024694cf4d854bb8065d3416b0b7f3c8dbee23b /functions.js
parent203de776e0185414049441ef831063a5a198fd5b (diff)
add page moving shortcuts
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/functions.js b/functions.js
index b5cf29b26..26f3f4bfb 100644
--- a/functions.js
+++ b/functions.js
@@ -237,6 +237,18 @@ function hotkey_handler(e) {
debug_mode_enabled = !debug_mode_enabled;
}
+ if (keycode == 190 && shift_key) { // >
+ viewFeedGoPage(1);
+ }
+
+ if (keycode == 188 && shift_key) { // <
+ viewFeedGoPage(-1);
+ }
+
+ if (keycode == 191 && shift_key) { // ?
+ viewFeedGoPage(0);
+ }
+
if (keycode == 69 && shift_key) {
return editFeedDlg(getActiveFeedId());
}