Fix mishandled @error in stillImage

This commit is contained in:
shpuld 2019-02-05 17:17:50 +02:00
parent 448317338e
commit 5974dfebfb
3 changed files with 10 additions and 2 deletions

View file

@ -24,6 +24,9 @@ const StillImage = {
canvas.width = width
canvas.height = height
canvas.getContext('2d').drawImage(this.$refs.src, 0, 0, width, height)
},
onError () {
this.imageLoadError && this.imageLoadError()
}
}
}