Fix per tasto command su MAC

This commit is contained in:
Luca 2024-03-01 15:34:47 +01:00
parent 0d85aba8f6
commit 1fbb02fbaa
1 changed files with 1 additions and 1 deletions

View File

@ -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;