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

add hotkey to catchup all feeds, add optional warning to catchupAllFeeds()

This commit is contained in:
Andrew Dolgov
2008-04-18 07:27:49 +01:00
parent 06925d9e85
commit f8232151a0
3 changed files with 20 additions and 10 deletions

View File

@@ -347,6 +347,12 @@ function hotkey_handler(e) {
}
}
if (keycode == 81 && shift_key) { // shift + q
if (typeof catchupAllFeeds != 'undefined') {
return catchupAllFeeds();
}
}
if (typeof localHotkeyHandler != 'undefined') {
try {
return localHotkeyHandler(e);