Skip to content
Snippets Groups Projects
Commit 74dca7e3 authored by jojohoch's avatar jojohoch
Browse files

Fix volume setting of audios and videos

parent ba97e912
No related branches found
No related tags found
No related merge requests found
Player
======
1.10.0
- Fix volume setting of audios and videos
1.9.0
- Add support for new frame element
......
......@@ -92,6 +92,7 @@ export class ControlBarComponent implements OnInit, OnChanges, OnDestroy {
onVolumeChange(event: MatSliderChange): void {
event.source.value = event.value && event.value > this.playerProperties.minVolume ?
event.value : this.playerProperties.minVolume;
this.player.volume = event.source.value;
}
toggleTime(): void {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment