1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 18:25:55 +00:00

Add keyboard shortcut 'g r': Go to Recently read

This commit is contained in:
ltGuillaume
2019-04-12 07:28:45 +00:00
parent 6fbf349155
commit 4c72d3b4fc

View File

@@ -416,6 +416,9 @@ require(["dojo/_base/kernel",
dijit.byId("feedTree").collapseCat(Feeds.getActive()); dijit.byId("feedTree").collapseCat(Feeds.getActive());
} }
}; };
this.hotkey_actions["goto_read"] = function () {
Feeds.open({feed: -6});
};
this.hotkey_actions["goto_all"] = function () { this.hotkey_actions["goto_all"] = function () {
Feeds.open({feed: -4}); Feeds.open({feed: -4});
}; };