From 1b14eb7959fa894ad864adb02704e1c903f65698 Mon Sep 17 00:00:00 2001 From: ed Date: Wed, 1 Sep 2021 22:26:18 +0200 Subject: [PATCH] fix thumbnail-zoom hotkeys --- copyparty/web/browser.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/copyparty/web/browser.js b/copyparty/web/browser.js index 49c94624..0b391140 100644 --- a/copyparty/web/browser.js +++ b/copyparty/web/browser.js @@ -2700,10 +2700,10 @@ document.onkeydown = function (e) { return ebi('gridsel').click(); if (k == 'KeyA') - return QSA('#ghead>a[z]')[0].click(); + return QSA('#ghead a[z]')[0].click(); if (k == 'KeyD') - return QSA('#ghead>a[z]')[1].click(); + return QSA('#ghead a[z]')[1].click(); } };