From: Andrew Dolgov Date: Thu, 8 Jun 2006 08:06:47 +0000 (+0100) Subject: add S hotkey - search dialog X-Git-Tag: 1.2.0~4 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=0a38301319ea393cf438d182baf1cbca533ba19c;p=tt-rss.git add S hotkey - search dialog --- diff --git a/functions.js b/functions.js index 9757eca8..1331eb8d 100644 --- a/functions.js +++ b/functions.js @@ -178,7 +178,11 @@ function hotkey_handler(e) { if (keycode == 82) { // r return m_ctx.scheduleFeedUpdate(true); } - + + if (keycode == 83) { // r + return m_ctx.displayDlg("search", getActiveFeedId()); + } + if (keycode == 85) { // u if (getActiveFeedId()) { return f_ctx.viewfeed(getActiveFeedId(), 0, "ForceUpdate");