Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

prejoin.html 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <html xmlns="http://www.w3.org/1999/html">
  2. <head>
  3. <meta charset="utf-8">
  4. <meta http-equiv="content-type" content="text/html;charset=utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <!--#include virtual="/base.html" -->
  7. <link rel="stylesheet" href="../css/all.css">
  8. <script>
  9. document.addEventListener('DOMContentLoaded', () => {
  10. if (!JitsiMeetJS.app) {
  11. return;
  12. }
  13. const url = new URL(window.location.href);
  14. const params = new URLSearchParams(url.search);
  15. const showAvatar = params.get('showAvatar') === 'true';
  16. const showJoinActions = params.get('showJoinActions') === 'true';
  17. const css = params.get('style');
  18. const style = document.createElement('style');
  19. style.appendChild(document.createTextNode(css));
  20. document.head.appendChild(style);
  21. JitsiMeetJS.app.renderEntryPoint({
  22. Component: JitsiMeetJS.app.entryPoints.PREJOIN,
  23. props: {
  24. showAvatar,
  25. showJoinActions
  26. }
  27. })
  28. })
  29. </script>
  30. <!--#include virtual="/title.html" -->
  31. <script>var config = {}</script><!-- adapt to your needs, i.e. set hosts and bosh path -->
  32. <script>var interfaceConfig = {}</script>
  33. <script src="../libs/lib-jitsi-meet.min.js?v=139"></script>
  34. <script src="../libs/app.bundle.min.js?v=139"></script>
  35. </head>
  36. <body>
  37. <div id="react"></div>
  38. </body>
  39. </html>