diff options
| author | Andrew Dolgov <noreply@fakecake.org> | 2018-12-05 17:52:55 +0300 |
|---|---|---|
| committer | Andrew Dolgov <noreply@fakecake.org> | 2018-12-05 17:52:55 +0300 |
| commit | 7edcf6c45fd33f80c1b813b31b738800a9d66208 (patch) | |
| tree | 9b3b2b12c2d4ae4f8969570b8e488d8a1fc48e1b /js/Headlines.js | |
| parent | e42d25a3617686edbd697e143ce602c9c43dd397 (diff) | |
ctrlclick in combined mode shouldn't open two windows
Diffstat (limited to 'js/Headlines.js')
| -rwxr-xr-x | js/Headlines.js | 2 |
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) { |