diff options
author | 2024-03-01 16:12:17 -0800 | |
---|---|---|
committer | 2024-03-01 16:56:15 -0800 | |
commit | abdd5876a14e1971b5caac93f6735773e7ee388b (patch) | |
tree | 0c7fca43f80ab3b1da921b9250e62727faea6546 /internal/ui/static/js/bootstrap.js | |
parent | 1b5edfc00aa1f862c50665e9561df868d554a221 (diff) | |
download | v2-abdd5876a14e1971b5caac93f6735773e7ee388b.tar.gz v2-abdd5876a14e1971b5caac93f6735773e7ee388b.tar.zst v2-abdd5876a14e1971b5caac93f6735773e7ee388b.zip |
Move search form to a dedicated page
Diffstat (limited to 'internal/ui/static/js/bootstrap.js')
-rw-r--r-- | internal/ui/static/js/bootstrap.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/ui/static/js/bootstrap.js b/internal/ui/static/js/bootstrap.js index cd11008e..fcc4d648 100644 --- a/internal/ui/static/js/bootstrap.js +++ b/internal/ui/static/js/bootstrap.js @@ -35,7 +35,7 @@ document.addEventListener("DOMContentLoaded", () => { keyboardHandler.on("?", () => showKeyboardShortcuts()); keyboardHandler.on("+", () => goToAddSubscription()); keyboardHandler.on("#", () => unsubscribeFromFeed()); - keyboardHandler.on("/", (e) => setFocusToSearchInput(e)); + keyboardHandler.on("/", () => goToPage("search")); keyboardHandler.on("a", () => { let enclosureElement = document.querySelector('.entry-enclosures'); if (enclosureElement) { |