(fix): Do not allow external css customization for static prejoin
This prevents CSS spoofing.
This commit is contained in:
parent
07a69ba040
commit
f82d46337b
|
@ -16,10 +16,6 @@
|
|||
const showAvatar = params.get('showAvatar') === 'true';
|
||||
const showJoinActions = params.get('showJoinActions') === 'true';
|
||||
const showSkipPrejoin = params.get('showSkipPrejoin') === 'true';
|
||||
const css = params.get('style');
|
||||
const style = document.createElement('style');
|
||||
style.appendChild(document.createTextNode(css));
|
||||
document.head.appendChild(style);
|
||||
|
||||
JitsiMeetJS.app.renderEntryPoint({
|
||||
Component: JitsiMeetJS.app.entryPoints.PREJOIN,
|
||||
|
|
Loading…
Reference in New Issue