summaryrefslogtreecommitdiff
path: root/js/viewfeed.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-12-01 00:35:18 +0300
committerAndrew Dolgov <[email protected]>2018-12-01 00:35:18 +0300
commit1702ecf7ea7f80fd7295c01cab3502c47cb72b45 (patch)
tree3a8fe2fe7328dd3c3bb88d9ead72e158200b5835 /js/viewfeed.js
parentbf1b89d0f1f430dcdda0879ebcf5e88f882c2ddd (diff)
cdmClicked: when clicked on article link, open it in background window even without ctrl
Diffstat (limited to 'js/viewfeed.js')
-rwxr-xr-xjs/viewfeed.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/viewfeed.js b/js/viewfeed.js
index 95e55050d..347c38938 100755
--- a/js/viewfeed.js
+++ b/js/viewfeed.js
@@ -1400,7 +1400,7 @@ function show_labels_in_headlines(transport) {
}
function cdmClicked(event, id, in_body) {
- if (event.ctrlKey && !in_body) {
+ if (event.ctrlKey && !in_body || !in_body) {
openArticleInNewWindow(id);
}