1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 10:16:39 +00:00

compat theme: properly reflow container height

This commit is contained in:
Andrew Dolgov
2008-05-12 09:26:29 +01:00
parent a9a3fcabce
commit ff284aa0b8
4 changed files with 23 additions and 82 deletions

View File

@@ -261,6 +261,14 @@ function hotkey_handler(e) {
if (new_feed) viewfeed(new_feed, '');
}
if (shift_key && (keycode == 78 || keycode == 40)) { // shift - n, down
return catchupRelativeToArticle(1);
}
if (shift_key && (keycode == 80 || keycode == 38)) { // shift - p, up
return catchupRelativeToArticle(0);
}
if (keycode == 78 || keycode == 40) { // n, down
if (typeof moveToPost != 'undefined') {
return moveToPost('next');