Removes the minimum width and height of the external API iframe in "film strip only" mode.

pull/344/head 617
hristoterezov 10 years ago
parent 5d32318d93
commit f60c1d9751
  1. 6
      external_api.js

@ -29,9 +29,9 @@ var JitsiMeetExternalAPI = (function()
*/
function JitsiMeetExternalAPI(domain, room_name, width, height, parentNode,
filmStripOnly) {
if(!width || width < MIN_WIDTH)
if((!width || width < MIN_WIDTH) && !filmStripOnly)
width = MIN_WIDTH;
if(!height || height < MIN_HEIGHT)
if((!height || height < MIN_HEIGHT) && !filmStripOnly)
height = MIN_HEIGHT;
this.parentNode = null;
@ -45,7 +45,9 @@ var JitsiMeetExternalAPI = (function()
this.iframeHolder =
this.parentNode.appendChild(document.createElement("div"));
this.iframeHolder.id = "jitsiConference" + JitsiMeetExternalAPI.id;
if(width)
this.iframeHolder.style.width = width + "px";
if(height)
this.iframeHolder.style.height = height + "px";
this.frameName = "jitsiConferenceFrame" + JitsiMeetExternalAPI.id;
this.url = "//" + domain + "/";

Loading…
Cancel
Save