diff --git a/assets/src/js/functions/functions.js b/assets/src/js/functions/functions.js index f951d4ba6..3059b7be7 100755 --- a/assets/src/js/functions/functions.js +++ b/assets/src/js/functions/functions.js @@ -94,7 +94,7 @@ function openModal(title, href) { * @param link */ function openLink(event, link) { - if (event.ctrlKey) { + if (event.ctrlKey || event.metaKey) { window.open(link); } else { location.href = link;