From 44eacbf6bc703eab0391bfc262ce0292a98a6da7 Mon Sep 17 00:00:00 2001 From: Alvaro Aleman Date: Sun, 14 Feb 2021 19:38:57 -0500 Subject: [PATCH] Preview: Close on esc key press --- frontend/src/components/files/Preview.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/components/files/Preview.vue b/frontend/src/components/files/Preview.vue index f72ad38b..8b42a0da 100644 --- a/frontend/src/components/files/Preview.vue +++ b/frontend/src/components/files/Preview.vue @@ -177,6 +177,8 @@ export default { if (this.hasNext) this.next() } else if (event.which === 37) { // left arrow if (this.hasPrevious) this.prev() + } else if (event.which === 27) { // esc + this.back() } }, async updatePreview () {