up/down arrows are hotkeys in feedlist
This commit is contained in:
parent
2e34656017
commit
e28f43f965
1 changed files with 2 additions and 2 deletions
|
@ -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');
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue