From dc4ff64600fcb16d0d4ca693decbd4eb865d6683 Mon Sep 17 00:00:00 2001 From: Damien De Paoli Date: Mon, 30 Aug 2021 17:47:33 +1000 Subject: [PATCH] viewer hotkeys are in tooltip now --- TODO | 3 --- templates/viewer.html | 12 ++++++++---- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/TODO b/TODO index d4fd321..99e8893 100644 --- a/TODO +++ b/TODO @@ -1,7 +1,4 @@ ## GENERAL - * viewer: - - buttons need tootltips to show shortcut key - * remove dirs after the duplicate cleanup removes all its content * Face matching: diff --git a/templates/viewer.html b/templates/viewer.html index 8631829..c14395a 100644 --- a/templates/viewer.html +++ b/templates/viewer.html @@ -171,15 +171,15 @@ Show: -
+
-
+
-
+
@@ -204,7 +204,7 @@ -
@@ -234,6 +234,10 @@ $( document ).keydown(function(event) { case "n": $('#fname_toggle').click() break; + case "F": + fullscreen=!document.fullscreen + ViewImageOrVideo() + break; default: return; // Quit when this doesn't handle the key event. }