1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 21:25:55 +00:00

cdmClicked: when clicked on article link, open it in background window even without ctrl

This commit is contained in:
Andrew Dolgov
2018-12-01 00:35:18 +03:00
parent bf1b89d0f1
commit 1702ecf7ea

View File

@@ -1400,7 +1400,7 @@ function show_labels_in_headlines(transport) {
} }
function cdmClicked(event, id, in_body) { function cdmClicked(event, id, in_body) {
if (event.ctrlKey && !in_body) { if (event.ctrlKey && !in_body || !in_body) {
openArticleInNewWindow(id); openArticleInNewWindow(id);
} }