1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 18:25:55 +00:00

implement classic next/prev article movement behavior, bind to ctrl-arrows

This commit is contained in:
Andrew Dolgov
2013-02-27 22:48:43 +04:00
parent 104e5c6557
commit c22580b55f
3 changed files with 15 additions and 4 deletions

View File

@@ -604,6 +604,12 @@ function hotkey_handler(e) {
case "prev_article":
moveToPost('prev');
return false;
case "next_article_noscroll":
moveToPost('next', true);
return false;
case "prev_article_noscroll":
moveToPost('prev', true);
return false;
case "search_dialog":
search();
return ;