Fixes issue with parsing "extrernal" hash parameter.

This commit is contained in:
hristoterezov 2015-07-22 13:26:07 -05:00
parent 1010a56899
commit ca5a1001a1
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ var JitsiMeetExternalAPI = (function()
this.url = "//" + domain + "/";
if(room_name)
this.url += room_name;
this.url += "#external";
this.url += "#external=true";
JitsiMeetExternalAPI.id++;
this.frame = document.createElement("iframe");