From: Andrew Dolgov Date: Fri, 16 May 2008 07:58:52 +0000 (+0100) Subject: add dispatcher function to edit current entry in prefs X-Git-Tag: 1.2.23-final~112 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=a80b05ea3399ade1e906cf358f75028cdc85af4a;p=tt-rss.git add dispatcher function to edit current entry in prefs --- diff --git a/help/4.php b/help/4.php index 0631ef17..d452183f 100644 --- a/help/4.php +++ b/help/4.php @@ -20,6 +20,7 @@ + diff --git a/prefs.js b/prefs.js index 8c0b8412..78ec548a 100644 --- a/prefs.js +++ b/prefs.js @@ -1773,6 +1773,14 @@ function pref_hotkey_handler(e) { return editFeedCats(); } + if (keycode == 84 && shift_key) { // T + return browseFeeds(); + } + + if (keycode == 69) { // e + return editCurrentEntryDispatcher(); + } + } /* Prefix g */ @@ -2102,6 +2110,10 @@ function rescore_all_feeds() { xmlhttp.onreadystatechange=notify_callback; xmlhttp.send(null); } +} + +function editCurrentEntryDispatcher() { + }
c s
c T
c c
c f
c l