From: Andrew Dolgov Date: Sun, 25 Feb 2007 10:05:03 +0000 (+0100) Subject: change c, z hotkeys to shift-f, shift-p (collides with app-c and such) X-Git-Tag: 1.2.9~77 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=57c9393e7518c14bbb46366aafd9735feee3b67c;p=tt-rss.git change c, z hotkeys to shift-f, shift-p (collides with app-c and such) --- diff --git a/functions.js b/functions.js index de88e4e4..29261291 100644 --- a/functions.js +++ b/functions.js @@ -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(); }