From 251a8f7e151c68d7246ad7c8047f9941336e95ce Mon Sep 17 00:00:00 2001 From: danactive Date: Sun, 19 Dec 2021 15:56:35 -0800 Subject: [PATCH] fix(API > Edit Album): Windows Control and Mac Command key support --- api/server/plugins/editAlbum/public/edit_admin_xml.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/server/plugins/editAlbum/public/edit_admin_xml.js b/api/server/plugins/editAlbum/public/edit_admin_xml.js index 186bae4e2..f96b28f93 100644 --- a/api/server/plugins/editAlbum/public/edit_admin_xml.js +++ b/api/server/plugins/editAlbum/public/edit_admin_xml.js @@ -135,7 +135,7 @@ const album = { return false; }, Invoke: function invokePhoto(e) { // click on photo - if (e.ctrlKey) { // allow multiples + if (e.ctrlKey || e.metaKey) { // allow multiples album.photo.recentIndex = $(this).toggleClass('selected').index(); album.form.PopulateFromPhoto($(this).data('photo')); } else if (e.shiftKey) { // select range