|
@@ -426,7 +426,7 @@ export default {
|
|
|
this.$refs.SecondViewVideo.mutedPlayer(true);
|
|
|
|
|
|
const res = this.$refs.FirstViewVideo.mutedPlayer(
|
|
|
- this.firstViewVideo.muted
|
|
|
+ !this.firstViewVideo.muted
|
|
|
);
|
|
|
if (res) this.firstViewVideo.muted = !this.firstViewVideo.muted;
|
|
|
} else {
|
|
@@ -434,7 +434,7 @@ export default {
|
|
|
this.$refs.FirstViewVideo.mutedPlayer(true);
|
|
|
|
|
|
const res = this.$refs.SecondViewVideo.mutedPlayer(
|
|
|
- this.secondViewVideo.muted
|
|
|
+ !this.secondViewVideo.muted
|
|
|
);
|
|
|
if (res) this.secondViewVideo.muted = !this.secondViewVideo.muted;
|
|
|
}
|