1
0
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:
Andrew Dolgov
2010-11-09 20:57:23 +03:00
parent 24e2bb3a92
commit dad14b513d
6 changed files with 272 additions and 462 deletions

View File

@@ -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;
}
}