From 97b50c35147f34a2114f08ac3e436c1f9f265ed9 Mon Sep 17 00:00:00 2001 From: steveseguin Date: Sun, 26 Mar 2023 17:06:52 -0400 Subject: [PATCH] comms app meta/cmd key support --- comms.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comms.html b/comms.html index 45745e4..64a7e2c 100644 --- a/comms.html +++ b/comms.html @@ -2080,7 +2080,7 @@ group.appendChild(name); name.groupID = groupID; name.onclick = function(e){ - if (e.ctrlKey){ + if (e.ctrlKey || e.metaKey){ var nn = prompt("Rename this group", this.groupID); if (this.groupID == nn){ name.innerHTML = "group: "+nn;