mirror of
https://github.com/miniflux/v2.git
synced 2025-08-06 17:41:00 +00:00
Adds keyboard shortcut for refreshing all feeds
- Binds the 'R' key to trigger a refresh in the background for all feeds. - Updates the locale, using the same description as the link in the feeds page. Co-authored-by: Vitor Pellegrino <pellegrino@linux.com>
This commit is contained in:
parent
7e5157f218
commit
7fb0bdc9a5
17 changed files with 61 additions and 16 deletions
3
ui/static/js/bootstrap.js
vendored
3
ui/static/js/bootstrap.js
vendored
|
@ -27,6 +27,7 @@ document.addEventListener("DOMContentLoaded", function () {
|
|||
keyboardHandler.on("s", () => handleSaveEntry());
|
||||
keyboardHandler.on("d", () => handleFetchOriginalContent());
|
||||
keyboardHandler.on("f", () => handleBookmark());
|
||||
keyboardHandler.on("R", () => handleRefreshAllFeeds());
|
||||
keyboardHandler.on("?", () => showKeyboardShortcuts());
|
||||
keyboardHandler.on("#", () => unsubscribeFromFeed());
|
||||
keyboardHandler.on("/", (e) => setFocusToSearchInput(e));
|
||||
|
@ -91,5 +92,5 @@ document.addEventListener("DOMContentLoaded", function () {
|
|||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue