[call-me] - fix local video mirror
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "call-me",
|
||||
"version": "1.0.81",
|
||||
"version": "1.0.82",
|
||||
"description": "Your Go-To for Instant Video Calls",
|
||||
"author": "Miroslav Pejic - miroslav.pejic.85@gmail.com",
|
||||
"license": "AGPLv3",
|
||||
|
||||
@@ -640,6 +640,7 @@ function handleSignIn(data) {
|
||||
.then((myStream) => {
|
||||
stream = myStream;
|
||||
localVideo.srcObject = stream;
|
||||
localVideo.className = 'mirror';
|
||||
localVideo.playsInline = true;
|
||||
localVideo.autoplay = true;
|
||||
localVideo.muted = true;
|
||||
|
||||
@@ -149,6 +149,12 @@ video::-webkit-media-controls {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.mirror {
|
||||
-webkit-transform: rotateY(180deg);
|
||||
-moz-transform: rotateY(180deg);
|
||||
transform: rotateY(180deg);
|
||||
}
|
||||
|
||||
/* Local Video Styles */
|
||||
#localVideoContainer {
|
||||
z-index: 3;
|
||||
|
||||
Reference in New Issue
Block a user