Merge pull request #1011 from jitsi/adds-id-to-etherpad-iframe

Adds an id to etherpad iframe.
This commit is contained in:
Paweł Domas 2016-10-13 15:49:00 -05:00 committed by GitHub
commit 856a18fc2a
1 changed files with 1 additions and 0 deletions

View File

@ -63,6 +63,7 @@ class Etherpad extends LargeContainer {
const iframe = document.createElement('iframe'); const iframe = document.createElement('iframe');
iframe.id = "etherpadIFrame";
iframe.src = domain + name + '?' + options; iframe.src = domain + name + '?' + options;
iframe.frameBorder = 0; iframe.frameBorder = 0;
iframe.scrolling = "no"; iframe.scrolling = "no";