From a6edbd184bfb6fb58820cfa4259b803a3bbc0988 Mon Sep 17 00:00:00 2001 From: Damien De Paoli Date: Sun, 26 Oct 2025 20:30:44 +1100 Subject: [PATCH] fixed mistaken removal of shift/ctrl buttons on mobiles for file* views --- templates/files.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/templates/files.html b/templates/files.html index 1985036..67e4de5 100644 --- a/templates/files.html +++ b/templates/files.html @@ -327,5 +327,11 @@ $('#viewer_del').on('click', function() { DelDBox('Restore') } ) } + if( isMobile() ) + { + $('#shift-key').css('visibility', 'visible'); + $('#ctrl-key').css('visibility', 'visible'); + } + {% endblock script_content %}