diff --git a/docs/topics/pending_work.rst b/docs/topics/pending_work.rst index 4cbe4deb7e..fa6e26c7fc 100644 --- a/docs/topics/pending_work.rst +++ b/docs/topics/pending_work.rst @@ -10,7 +10,6 @@ These are errors or issues that are blocking a release. UI - Frontend ~~~~~~~~~~~~~ - Match row height is not executing until scroll. -- Fix shift+click and control+click. UI - Backend diff --git a/mayan/apps/appearance/static/appearance/js/partial_navigation.js b/mayan/apps/appearance/static/appearance/js/partial_navigation.js index efc88484b8..6cabfb7baa 100644 --- a/mayan/apps/appearance/static/appearance/js/partial_navigation.js +++ b/mayan/apps/appearance/static/appearance/js/partial_navigation.js @@ -127,6 +127,11 @@ PartialNavigation.prototype.onAnchorClick = function ($this, event) { event.preventDefault(); + if (event.ctrlKey) { + window.open(url); + return false; + } + if (!($this.hasClass('disabled') || $this.parent().hasClass('disabled'))) { this.setLocation(url); }