1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 21:35:55 +00:00

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