mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-15 11:55:57 +00:00
reinstate N & P shortcuts
This commit is contained in:
10
tt-rss.js
10
tt-rss.js
@@ -1010,6 +1010,16 @@ function hotkey_handler(e) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (shift_key && (keycode == 78 || keycode == 40)) { // shift - n, down
|
||||
catchupRelativeToArticle(1);
|
||||
return false;
|
||||
}
|
||||
|
||||
if (shift_key && (keycode == 80 || keycode == 38)) { // shift - p, up
|
||||
catchupRelativeToArticle(0);
|
||||
return false;
|
||||
}
|
||||
|
||||
if (keycode == 78 || keycode == 40) { // n, down
|
||||
if (typeof moveToPost != 'undefined') {
|
||||
moveToPost('next');
|
||||
|
||||
Reference in New Issue
Block a user