On small devices we do not want the panel to be less than 200px anyway, so remove that calculation. Hopefully fixes https://github.com/jitsi/jitsi-meet/issues/335#issuecomment-181144547

This commit is contained in:
luciash 2016-04-04 17:24:31 +02:00
parent bb04d4574f
commit 1662481956
2 changed files with 0 additions and 5 deletions

View File

@ -3,9 +3,7 @@
position: absolute;
top: 0px;
left: 0px;
right: 0 !important;
overflow-x: hidden;
width: 100% !important;
}
#remoteVideos {

View File

@ -13,9 +13,6 @@
var availableWidth = window.innerWidth;
var panelWidth = 200;
if (availableWidth * 0.2 < 200) {
panelWidth = availableWidth * 0.2;
}
return [panelWidth, availableHeight];
},