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()
|
if (this.hasNext) this.next()
|
||||||
} else if (event.which === 37) { // left arrow
|
} else if (event.which === 37) { // left arrow
|
||||||
if (this.hasPrevious) this.prev()
|
if (this.hasPrevious) this.prev()
|
||||||
|
} else if (event.which === 27) { // esc
|
||||||
|
this.back()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
async updatePreview () {
|
async updatePreview () {
|
||||||
|
|
Loading…
Reference in New Issue