summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-12-05 17:52:55 +0300
committerAndrew Dolgov <[email protected]>2018-12-05 17:52:55 +0300
commit7edcf6c45fd33f80c1b813b31b738800a9d66208 (patch)
tree9b3b2b12c2d4ae4f8969570b8e488d8a1fc48e1b /js
parente42d25a3617686edbd697e143ce602c9c43dd397 (diff)
ctrlclick in combined mode shouldn't open two windows
Diffstat (limited to 'js')
-rwxr-xr-xjs/Headlines.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/Headlines.js b/js/Headlines.js
index 99ce39150..00b7f88f4 100755
--- a/js/Headlines.js
+++ b/js/Headlines.js
@@ -15,7 +15,7 @@ define(["dojo/_base/declare"], function (declare) {
if (!in_body && (event.ctrlKey || id == Article.getActive() || App.getInitParam("cdm_expanded"))) {
Article.openInNewWindow(id);
Headlines.toggleUnread(id, 0);
- return;
+ return false;
}
if (Article.getActive() != id) {