summaryrefslogtreecommitdiff
path: root/js/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-02-27 22:48:43 +0400
committerAndrew Dolgov <[email protected]>2013-02-27 22:48:43 +0400
commitc22580b55f959c8deaebf9aa3a7895c7795df75d (patch)
tree27fcb5b13504e5b90cc75a2dce470fc9ad85bf29 /js/tt-rss.js
parent104e5c6557707b13307802dd3b9c87d0209d4a92 (diff)
implement classic next/prev article movement behavior, bind to ctrl-arrows
Diffstat (limited to 'js/tt-rss.js')
-rw-r--r--js/tt-rss.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/js/tt-rss.js b/js/tt-rss.js
index 530cb2931..7462d933d 100644
--- a/js/tt-rss.js
+++ b/js/tt-rss.js
@@ -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 ;