From 1ae56305908094639efc25fecf02f763e263c25e Mon Sep 17 00:00:00 2001 From: Tudor-Ovidiu Avram Date: Thu, 23 Jul 2020 13:04:01 +0300 Subject: [PATCH] fix(prejoin) fix libs path --- static/prejoin.html | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/static/prejoin.html b/static/prejoin.html index 2dc570273..a808ea30c 100644 --- a/static/prejoin.html +++ b/static/prejoin.html @@ -15,6 +15,7 @@ const params = new URLSearchParams(url.search); 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)); @@ -24,16 +25,17 @@ Component: JitsiMeetJS.app.entryPoints.PREJOIN, props: { showAvatar, - showJoinActions + showJoinActions, + showSkipPrejoin } }) }) - - - - + + + +