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

View file

@ -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');
}