mirror of
				https://github.com/pierre42100/ComunicWeb
				synced 2025-11-03 19:54:14 +00:00 
			
		
		
		
	Improve support of audio-only calls
This commit is contained in:
		@@ -27,6 +27,10 @@
 | 
			
		||||
	visibility: visible;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.call-window.audio-only {
 | 
			
		||||
	min-height: unset;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* This could be moved to conversation page stylesheet also */
 | 
			
		||||
.call-window.embedded {
 | 
			
		||||
	position: unset;
 | 
			
		||||
@@ -36,6 +40,9 @@
 | 
			
		||||
	height: 150px;
 | 
			
		||||
	margin: 10px auto;
 | 
			
		||||
}
 | 
			
		||||
.call-window.embedded.audio-only {
 | 
			
		||||
	height: 90px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.call-window .head {
 | 
			
		||||
	color: white;
 | 
			
		||||
 
 | 
			
		||||
@@ -48,6 +48,9 @@ class CallWindow extends CustomEvents {
 | 
			
		||||
				class: "call-window"
 | 
			
		||||
			})
 | 
			
		||||
 | 
			
		||||
			if(!this.conv.can_have_video_call)
 | 
			
		||||
				this.rootEl.classList.add("audio-only")
 | 
			
		||||
 | 
			
		||||
			
 | 
			
		||||
			// Construct head
 | 
			
		||||
			this.windowHead = createElem2({
 | 
			
		||||
@@ -475,7 +478,7 @@ class CallWindow extends CustomEvents {
 | 
			
		||||
	async toggleStream(isVideo) {
 | 
			
		||||
 | 
			
		||||
		if(isVideo && !this.conv.can_have_video_call) {
 | 
			
		||||
			notify("Video calls can not be perfomed on this conversations!", "danger")
 | 
			
		||||
			notify("Video calls can not be done on this conversations!", "danger")
 | 
			
		||||
			return;
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user