add new shortcuts to catchup page (z) and feed (c)
This commit is contained in:
parent
6f9cb1b50e
commit
e30a61d4a8
1 changed files with 12 additions and 0 deletions
12
functions.js
12
functions.js
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue