1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-10 13:09:15 +00:00

some new hotkeys

This commit is contained in:
Andrew Dolgov
2005-11-16 06:40:03 +01:00
parent cce41088c0
commit b623b3edcb
4 changed files with 51 additions and 9 deletions

View File

@@ -177,14 +177,28 @@ function viewfeed(id) {
function localHotkeyHandler(keycode) {
if (keycode == 78) {
if (keycode == 78) { // n
return moveToPost('next');
}
if (keycode == 80) {
if (keycode == 80) { // p
return moveToPost('prev');
}
if (keycode == 65) { // a
return parent.toggleDispRead();
}
if (keycode == 85) { // u
if (parent.getActiveFeedId()) {
return parent.viewfeed(parent.getActiveFeedId(), 0, "ForceUpdate");
}
}
if (keycode == 82) { // r
return parent.scheduleFeedUpdate(true);
}
// FIXME
// if (keycode == 85) {
// return viewfeed(active_feed_id, active_offset, "ForceUpdate");
@@ -193,3 +207,7 @@ function localHotkeyHandler(keycode) {
// alert("KC: " + keycode);
}
function init() {
document.onkeydown = hotkey_handler;
}