diff options
Diffstat (limited to 'client-web/public/start.html')
-rw-r--r-- | client-web/public/start.html | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/client-web/public/start.html b/client-web/public/start.html index 4c90934..67cad7f 100644 --- a/client-web/public/start.html +++ b/client-web/public/start.html @@ -7,7 +7,7 @@ name="description" content="A simple secure web conferencing application using webrtc" /> - <link rel="stylesheet" href="/style.css" /> + <link rel="stylesheet" href="/assets/bundle.css" /> <title>keks-meet</title> </head> <body class="start"> @@ -18,8 +18,9 @@ </p> <br /> <p class="instructions"> - To start a meeting, click 'Create room' and share the URL with all - participants. You can also optionally set the room name below. + To start a meeting, click 'Create room' and share the URL with + all participants. You can also optionally set the room name + below. </p> <p class="instructions"> keks-meet is free software! It is licenced under the terms of @@ -81,7 +82,7 @@ ], ]; return frags - .map(f => f[Math.floor(Math.random() * f.length)]) + .map((f) => f[Math.floor(Math.random() * f.length)]) .join("") .trim(); } |