add check for volume parameter in URL before setting volume (#372)
This commit is contained in:
parent
798bf579c0
commit
db6f9c957e
@ -204,7 +204,9 @@
|
|||||||
|
|
||||||
@Watch('volume', { immediate: true })
|
@Watch('volume', { immediate: true })
|
||||||
onVolume(volume: number) {
|
onVolume(volume: number) {
|
||||||
this.$accessor.video.setVolume(volume)
|
if (new URL(location.href).searchParams.has('volume')) {
|
||||||
|
this.$accessor.video.setVolume(volume)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Watch('hideControls', { immediate: true })
|
@Watch('hideControls', { immediate: true })
|
||||||
|
Reference in New Issue
Block a user