new hotkey, c - catchup current article
This commit is contained in:
parent
a36c0dfe23
commit
5e1f0af73e
|
@ -350,6 +350,14 @@ function hotkey_handler(e) {
|
|||
}
|
||||
}
|
||||
|
||||
if (keycode == 67) { // c
|
||||
var id = getActiveArticleId();
|
||||
|
||||
if (id) {
|
||||
toggleUnread(id, 0);
|
||||
}
|
||||
}
|
||||
|
||||
if (typeof localHotkeyHandler != 'undefined') {
|
||||
try {
|
||||
return localHotkeyHandler(e);
|
||||
|
|
Loading…
Reference in New Issue