From ba7cb98bdfd0b2b1060f6fb0dbcb184b7e85847c Mon Sep 17 00:00:00 2001 From: maTh Date: Mon, 2 Jan 2023 11:04:03 +0100 Subject: [PATCH] open "manage feed" with Ctrl in a new tab (#4980) --- p/scripts/extra.js | 3 +++ 1 file changed, 3 insertions(+) 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) {