1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 17:35:57 +00:00

add dispatcher function to edit current entry in prefs

This commit is contained in:
Andrew Dolgov
2008-05-16 08:58:52 +01:00
parent 57f734c895
commit a80b05ea33
2 changed files with 13 additions and 0 deletions

View File

@@ -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() {
}