mirror of
https://github.com/miniflux/v2.git
synced 2025-08-06 17:41:00 +00:00
Add keyboard shortcuts for scrolling to top/bottom of the item list
This commit is contained in:
parent
fe8b7a907e
commit
1ea3953271
21 changed files with 76 additions and 11 deletions
2
internal/ui/static/js/bootstrap.js
vendored
2
internal/ui/static/js/bootstrap.js
vendored
|
@ -9,6 +9,8 @@ document.addEventListener("DOMContentLoaded", () => {
|
|||
keyboardHandler.on("g f", goToFeedOrFeeds);
|
||||
keyboardHandler.on("g c", () => goToPage("categories"));
|
||||
keyboardHandler.on("g s", () => goToPage("settings"));
|
||||
keyboardHandler.on("g g", () => goToPrevious(TOP));
|
||||
keyboardHandler.on("G", () => goToNext(BOTTOM));
|
||||
keyboardHandler.on("ArrowLeft", goToPrevious);
|
||||
keyboardHandler.on("ArrowRight", goToNext);
|
||||
keyboardHandler.on("k", goToPrevious);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue