mirror of
https://github.com/miniflux/v2.git
synced 2025-06-27 16:36:00 +00:00
NavHandler: Make "g f" go to feed, or list of feeds
When you're reading an entry, you may want to go to the feed first, before quickly continuing to reading all of the feeds with another "g f".
This commit is contained in:
parent
74c35ad000
commit
8c65c78904
13 changed files with 44 additions and 11 deletions
2
ui/static/js/bootstrap.js
vendored
2
ui/static/js/bootstrap.js
vendored
|
@ -9,7 +9,7 @@ document.addEventListener("DOMContentLoaded", function() {
|
|||
keyboardHandler.on("g u", () => navHandler.goToPage("unread"));
|
||||
keyboardHandler.on("g b", () => navHandler.goToPage("starred"));
|
||||
keyboardHandler.on("g h", () => navHandler.goToPage("history"));
|
||||
keyboardHandler.on("g f", () => navHandler.goToPage("feeds"));
|
||||
keyboardHandler.on("g f", () => navHandler.goToFeedOrFeeds());
|
||||
keyboardHandler.on("g c", () => navHandler.goToPage("categories"));
|
||||
keyboardHandler.on("g s", () => navHandler.goToPage("settings"));
|
||||
keyboardHandler.on("ArrowLeft", () => navHandler.goToPrevious());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue