From a80b05ea3399ade1e906cf358f75028cdc85af4a Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 16 May 2008 08:58:52 +0100 Subject: add dispatcher function to edit current entry in prefs --- prefs.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'prefs.js') diff --git a/prefs.js b/prefs.js index 8c0b84127..78ec548a9 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() { + } -- cgit v1.2.3-54-g00ecf