From 1fbb02fbaad0af3a083718b0812deba9887f29d4 Mon Sep 17 00:00:00 2001 From: Luca Date: Fri, 1 Mar 2024 15:34:47 +0100 Subject: [PATCH] Fix per tasto command su MAC --- assets/src/js/functions/functions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;