summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-01-17 10:48:25 +0100
committerAndrew Dolgov <[email protected]>2009-01-17 10:48:25 +0100
commit617698d71010d43161b968811f50e0edce25dc1a (patch)
treee588fcb113d753a8b9e643e59f8ac87c7b2b939b /tt-rss.js
parentc4f56bed5f1a0ea066e76a93de0d2e6e87e921f2 (diff)
move r and q hotkeys to prefix f
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js28
1 files changed, 14 insertions, 14 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 3cb07e124..658c696d2 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -1095,13 +1095,6 @@ function hotkey_handler(e) {
return;
}
- if (keycode == 82) { // r
- if (getActiveFeedId()) {
- viewfeed(getActiveFeedId(), "ForceUpdate", activeFeedIsCat());
- return;
- }
- }
-
if (keycode == 74) { // j
var feed = getActiveFeedId();
var new_feed = getRelativeFeedId2(feed, activeFeedIsCat(), 'prev');
@@ -1229,13 +1222,6 @@ function hotkey_handler(e) {
}
}
- if (keycode == 81) { // q
- if (getActiveFeedId()) {
- catchupCurrentFeed();
- return;
- }
- }
-
if (keycode == 220 && shift_key) { // shift + |
if (document.getElementById("subtoolbar_search")) {
if (Element.visible("subtoolbar_search")) {
@@ -1262,6 +1248,20 @@ function hotkey_handler(e) {
hotkey_prefix = false;
+ if (keycode == 81) { // q
+ if (getActiveFeedId()) {
+ catchupCurrentFeed();
+ return;
+ }
+ }
+
+ if (keycode == 82) { // r
+ if (getActiveFeedId()) {
+ viewfeed(getActiveFeedId(), "ForceUpdate", activeFeedIsCat());
+ return;
+ }
+ }
+
if (keycode == 65) { // a
toggleDispRead();
return false;