From 9ed6e0e2f97464996422053f15a556b32964f5bf Mon Sep 17 00:00:00 2001 From: damencho Date: Thu, 13 Oct 2016 15:46:44 -0500 Subject: [PATCH] Adds an id to etherpad iframe. --- modules/UI/etherpad/Etherpad.js | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/UI/etherpad/Etherpad.js b/modules/UI/etherpad/Etherpad.js index 4bbfbdc96..db890a1c9 100644 --- a/modules/UI/etherpad/Etherpad.js +++ b/modules/UI/etherpad/Etherpad.js @@ -63,6 +63,7 @@ class Etherpad extends LargeContainer { const iframe = document.createElement('iframe'); + iframe.id = "etherpadIFrame"; iframe.src = domain + name + '?' + options; iframe.frameBorder = 0; iframe.scrolling = "no";