MediaModal: Close on browser navigation events.

This commit is contained in:
lain 2020-06-04 16:30:28 +02:00
parent 5ac2c365a7
commit cb99dc2b27
1 changed files with 2 additions and 0 deletions

View File

@ -84,10 +84,12 @@ const MediaModal = {
}
},
mounted () {
window.addEventListener('popstate', this.hide)
document.addEventListener('keyup', this.handleKeyupEvent)
document.addEventListener('keydown', this.handleKeydownEvent)
},
destroyed () {
window.removeEventListener('popstate', this.hide)
document.removeEventListener('keyup', this.handleKeyupEvent)
document.removeEventListener('keydown', this.handleKeydownEvent)
}