missed something when adjusting border size - fixed

This commit is contained in:
Khush Jammu 2020-06-01 00:33:08 +08:00
parent d7a52afe5f
commit 25c3014b68
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ var VideoChat = {
});
VideoChat.localVideo.srcObject = stream;
VideoChat.localVideo.style.border = `4px solid ${VideoChat.borderColor}`;
VideoChat.localVideo.style.border = `3px solid ${VideoChat.borderColor}`;
// Now we're ready to join the chat room.
VideoChat.socket.emit("join", roomHash);