]> git.wh0rd.org - tt-rss.git/blobdiff - functions.js
change c, z hotkeys to shift-f, shift-p (collides with app-c and such)
[tt-rss.git] / functions.js
index de88e4e499f78b23765e75f19fb0ff1fe9e44373..292612919184a5553b6545e2c61e72e6ecd25b3f 100644 (file)
@@ -257,17 +257,17 @@ function hotkey_handler(e) {
                        viewFeedGoPage(0);
                }
 
-               if (keycode == 69 && shift_key) {
+               if (keycode == 69 && shift_key) { // e
                        return editFeedDlg(getActiveFeedId());
                }
 
-               if (keycode == 67) { // c 
+               if (keycode == 70 && shift_key) { // f
                        if (getActiveFeedId()) {
                                return catchupCurrentFeed();
                        }
                }
 
-               if (keycode == 90) { // z 
+               if (keycode == 80 && shift_key) { // p 
                        if (getActiveFeedId()) {
                                return catchupPage();
                        }