1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 02:35:55 +00:00

add page moving shortcuts

This commit is contained in:
Andrew Dolgov
2007-01-19 10:54:17 +01:00
parent 203de776e0
commit 50a2595d40
2 changed files with 25 additions and 5 deletions

View File

@@ -237,6 +237,18 @@ function hotkey_handler(e) {
debug_mode_enabled = !debug_mode_enabled;
}
if (keycode == 190 && shift_key) { // >
viewFeedGoPage(1);
}
if (keycode == 188 && shift_key) { // <
viewFeedGoPage(-1);
}
if (keycode == 191 && shift_key) { // ?
viewFeedGoPage(0);
}
if (keycode == 69 && shift_key) {
return editFeedDlg(getActiveFeedId());
}