mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-15 01:45:56 +00:00
refactor combined mode, code cleanup
This commit is contained in:
@@ -1009,14 +1009,14 @@ function hotkey_handler(e) {
|
||||
if (keycode == 78 || keycode == 40) { // n, down
|
||||
if (typeof moveToPost != 'undefined') {
|
||||
moveToPost('next');
|
||||
return;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
if (keycode == 80 || keycode == 38) { // p, up
|
||||
if (typeof moveToPost != 'undefined') {
|
||||
moveToPost('prev');
|
||||
return;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user