fix(etherpad) avoid using deprecated property

This commit is contained in:
Saúl Ibarra Corretgé 2023-02-03 09:28:51 +01:00 committed by Saúl Ibarra Corretgé
parent e7b16b0daf
commit 36bfbeb81d
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ class Etherpad extends LargeContainer {
iframe.id = 'etherpadIFrame';
iframe.src = url;
iframe.frameBorder = 0;
iframe.style.border = 0;
iframe.scrolling = 'no';
iframe.width = DEFAULT_WIDTH;
iframe.height = DEFAULT_HEIGHT;