From: Andrew Dolgov Date: Sat, 17 May 2008 14:56:46 +0000 (+0100) Subject: add r hotkey - update all feeds X-Git-Tag: 1.2.23-final~87 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=bd7ad16ce0002cb45d2b814a650d7cd108a55d53;p=tt-rss.git add r hotkey - update all feeds --- diff --git a/tt-rss.js b/tt-rss.js index 859b9812..65ed07ed 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -986,6 +986,10 @@ function hotkey_handler(e) { return displayDlg("search", getActiveFeedId() + ":" + activeFeedIsCat()); } + if (keycode == 82) { // r + return scheduleFeedUpdate(true); + } + if (keycode == 74) { // j var feed = getActiveFeedId(); var new_feed = getRelativeFeedId(feedlist, feed, 'prev'); @@ -1074,7 +1078,7 @@ function hotkey_handler(e) { return toggleDispRead(); } - if (keycode == 85 && shift_key) { // r + if (keycode == 85 && shift_key) { // U return scheduleFeedUpdate(true); }