diff options
| author | 2023-01-02 11:04:03 +0100 | |
|---|---|---|
| committer | 2023-01-02 11:04:03 +0100 | |
| commit | ba7cb98bdfd0b2b1060f6fb0dbcb184b7e85847c (patch) | |
| tree | fcca23f147304b20af4288659bd1776440f29c5e /p/scripts | |
| parent | c0a89a99b4e90464d51f8fa0448fafc2df9c5c42 (diff) | |
open "manage feed" with Ctrl in a new tab (#4980)
Diffstat (limited to 'p/scripts')
| -rw-r--r-- | p/scripts/extra.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/p/scripts/extra.js b/p/scripts/extra.js index 52a480c9a..c068a9982 100644 --- a/p/scripts/extra.js +++ b/p/scripts/extra.js @@ -145,6 +145,9 @@ function init_archiving(parent) { const freshrssSliderLoadEvent = new Event('freshrss:slider-load'); function open_slider_listener(ev) { + if (ev.ctrlKey || ev.shiftKey) { + return; + } const a = ev.target.closest('.open-slider'); if (a) { if (!context.ajax_loading) { |
