]> git.wh0rd.org Git - tt-rss.git/commitdiff
add r hotkey - update all feeds
authorAndrew Dolgov <fox@bah.spb.su>
Sat, 17 May 2008 14:56:46 +0000 (15:56 +0100)
committerAndrew Dolgov <fox@bah.spb.su>
Sat, 17 May 2008 14:56:46 +0000 (15:56 +0100)
tt-rss.js

index 859b98120c936c15c2cbcec3ba6a0388107dbca9..65ed07edb4a6bf43da93433699cfd6a6d5c3a7a4 100644 (file)
--- 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);
                        }