summaryrefslogtreecommitdiff
path: root/viewfeed.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-11-16 06:55:06 +0100
committerAndrew Dolgov <[email protected]>2005-11-16 06:55:06 +0100
commite28f43f9657b61bb79380abca3a72f525211c152 (patch)
tree469a21e98209aa8c2b720f6a8cf9fb90dfeb1c2f /viewfeed.js
parent2e34656017bb891a247bb1100957298d4e8de59b (diff)
up/down arrows are hotkeys in feedlist
Diffstat (limited to 'viewfeed.js')
-rw-r--r--viewfeed.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/viewfeed.js b/viewfeed.js
index 459434839..9d42b9102 100644
--- a/viewfeed.js
+++ b/viewfeed.js
@@ -177,11 +177,11 @@ function viewfeed(id) {
function localHotkeyHandler(keycode) {
- if (keycode == 78) { // n
+ if (keycode == 78 || keycode == 40) { // n, down
return moveToPost('next');
}
- if (keycode == 80) { // p
+ if (keycode == 80 || keycode == 38) { // p, up
return moveToPost('prev');
}