up/down arrows are hotkeys in feedlist

This commit is contained in:
Andrew Dolgov 2005-11-16 06:55:06 +01:00
parent 2e34656017
commit e28f43f965
1 changed files with 2 additions and 2 deletions

View File

@ -177,11 +177,11 @@ function viewfeed(id) {
function localHotkeyHandler(keycode) { function localHotkeyHandler(keycode) {
if (keycode == 78) { // n if (keycode == 78 || keycode == 40) { // n, down
return moveToPost('next'); return moveToPost('next');
} }
if (keycode == 80) { // p if (keycode == 80 || keycode == 38) { // p, up
return moveToPost('prev'); return moveToPost('prev');
} }