diff --git a/src/components/CscMedia.vue b/src/components/CscMedia.vue index 3056648f..8374e668 100644 --- a/src/components/CscMedia.vue +++ b/src/components/CscMedia.vue @@ -164,6 +164,12 @@ else { this.fitMediaToParent(); } + }, + toggleAudio(){ + return this.$refs.media.muted = !this.$refs.media.muted; + }, + isMuted(){ + return this.$refs.media.muted; } }, watch: { diff --git a/src/components/pages/Conference/CscConferenceRemoteParticipant.vue b/src/components/pages/Conference/CscConferenceRemoteParticipant.vue index 5f51925a..14dc25df 100644 --- a/src/components/pages/Conference/CscConferenceRemoteParticipant.vue +++ b/src/components/pages/Conference/CscConferenceRemoteParticipant.vue @@ -2,6 +2,39 @@ +
+ + + + + + + + + + + + + +