mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
chore: close preview on esc key press (#1288)
This commit is contained in:
parent
f1b7bd59f6
commit
977ec33918
@ -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 () {
|
||||
|
Loading…
Reference in New Issue
Block a user