1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-21 06:21:29 +00:00

add hotkey (f x) to reverse headlines order (closes #262)

This commit is contained in:
Andrew Dolgov
2010-02-18 16:05:35 +03:00
parent fdf47b9d1c
commit 8a3e0b1aa6
3 changed files with 37 additions and 4 deletions

View File

@@ -1251,6 +1251,10 @@ function hotkey_handler(e) {
return;
}
if (keycode == 88) { // x
reverseHeadlineOrder();
return;
}
}
/* Prefix c */
@@ -1364,3 +1368,19 @@ function feedsSortByUnread() {
function inPreferences() {
return false;
}
function reverseHeadlineOrder() {
try {
var query_str = "?op=rpc&subop=togglepref&key=REVERSE_HEADLINES";
new Ajax.Request("backend.php", {
parameters: query_str,
onComplete: function(transport) {
viewCurrentFeed();
} });
} catch (e) {
exception_error("reverseHeadlineOrder", e);
}
}