Skip to content

Commit bb631c5

Browse files
authored
Merge pull request #98 from robots-from-jupyter/videochat
docs: Change to use release version of videochat
2 parents 0bc27c1 + ee83910 commit bb631c5

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

_templates/lite-demo.html

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<aside class="navbar-demo-box" title="try RobotKernel in your browser right now.">
22
<h2>DEMO</h2>
33
<div class="demo-label">
4-
Try <code>RobotKernel</code> right now with <input
4+
Try <code>RobotKernel</code> right now with <em><input
55
id="room-name"
66
type="text"
77
placeholder="nobody else"
8-
title="give a room name to enable shared editing"
8+
title="give a room name to enable shared editing with videochat"
99
/> in...</em>
1010
</div>
1111
<form
@@ -16,12 +16,12 @@ <h2>DEMO</h2>
1616
<input
1717
type="submit"
1818
title="RobotKernel in the la[te]st Jupyter UI"
19-
title="JupyterLab UI"
2019
value="JupyterLab"
2120
class="launch-demo"
2221
/>
2322
<input name="path" type="hidden" value="Example.ipynb" />
2423
<input name="room" type="hidden" value="" />
24+
<input name="JVC-PUBLIC" type="hidden" value="" />
2525
</form>
2626
<div class="demo-label">
2727
... with <a href="https://github.com/jupyterlite/jupyterlite">JupyterLite</a>
@@ -31,9 +31,10 @@ <h2>DEMO</h2>
3131
<script>
3232
$(function () {
3333
const roomName = $("#room-name");
34-
roomName.on("input", () =>
35-
$("input[name='room']").prop("value", roomName.prop("value"))
36-
);
34+
roomName.on("input", () => {
35+
$("input[name='room']").prop("value", roomName.prop("value"));
36+
$("input[name='JVC-PUBLIC']").prop("value", roomName.prop("value"));
37+
});
3738
});
3839
</script>
3940

dodo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ def _clean_wheels():
199199
),
200200
# Not sure, why these were not discovered from conda environment
201201
doit.tools.CmdAction(
202-
[PY, "-m", "pip", "wheel", "--no-deps", "--prefer-binary", "jupyterlab-robotmode", "jupyterlab-widgets"],
202+
[PY, "-m", "pip", "wheel", "--no-deps", "--prefer-binary", "jupyterlab-robotmode", "jupyterlab-widgets", "jupyter-videochat"],
203203
cwd=str(LITE),
204204
shell=False,
205205
),
-58.9 KB
Binary file not shown.

0 commit comments

Comments
 (0)