fixed mistaken removal of shift/ctrl buttons on mobiles for file* views

This commit is contained in:
2025-10-26 20:30:44 +11:00
parent 09e7b8eea7
commit a6edbd184b

View File

@@ -327,5 +327,11 @@
$('#viewer_del').on('click', function() { DelDBox('Restore') } )
}
if( isMobile() )
{
$('#shift-key').css('visibility', 'visible');
$('#ctrl-key').css('visibility', 'visible');
}
</script>
{% endblock script_content %}