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

@ -20,6 +20,7 @@
<table> <table>
<tr><td class='n'>c s</td><td><?php echo __("Subscribe to feed") ?></td></tr> <tr><td class='n'>c s</td><td><?php echo __("Subscribe to feed") ?></td></tr>
<tr><td class='n'>c T</td><td><?php echo __("Top 25 feeds") ?></td></tr>
<tr><td class='n'>c c</td><td><?php echo __("Edit feed categories") ?></td></tr> <tr><td class='n'>c c</td><td><?php echo __("Edit feed categories") ?></td></tr>
<tr><td class='n'>c f</td><td><?php echo __("Create filter") ?></td></tr> <tr><td class='n'>c f</td><td><?php echo __("Create filter") ?></td></tr>
<tr><td class='n'>c l</td><td><?php echo __("Create label") ?></td></tr> <tr><td class='n'>c l</td><td><?php echo __("Create label") ?></td></tr>

View File

@ -1773,6 +1773,14 @@ function pref_hotkey_handler(e) {
return editFeedCats(); return editFeedCats();
} }
if (keycode == 84 && shift_key) { // T
return browseFeeds();
}
if (keycode == 69) { // e
return editCurrentEntryDispatcher();
}
} }
/* Prefix g */ /* Prefix g */
@ -2102,6 +2110,10 @@ function rescore_all_feeds() {
xmlhttp.onreadystatechange=notify_callback; xmlhttp.onreadystatechange=notify_callback;
xmlhttp.send(null); xmlhttp.send(null);
} }
}
function editCurrentEntryDispatcher() {
} }