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

add new shortcuts to catchup page (z) and feed (c)

This commit is contained in:
Andrew Dolgov
2007-02-21 14:10:00 +01:00
parent 6f9cb1b50e
commit e30a61d4a8

View File

@@ -261,6 +261,18 @@ function hotkey_handler(e) {
return editFeedDlg(getActiveFeedId());
}
if (keycode == 67) { // c
if (getActiveFeedId()) {
return catchupCurrentFeed();
}
}
if (keycode == 90) { // z
if (getActiveFeedId()) {
return catchupPage();
}
}
if (typeof localHotkeyHandler != 'undefined') {
try {
return localHotkeyHandler(e);