From f881a740572f7f4523ed3af3f7d0f66637cbae72 Mon Sep 17 00:00:00 2001 From: Mathieu Dombrock Date: Sun, 26 Feb 2023 17:33:02 -0800 Subject: [PATCH] basic chat support --- client/index.html | 32 ++++++++++++++++++++- client/webrtc.js | 72 +++++++++++++++++++++++++++++++++++++++++++++-- dataChan.js | 38 +++++++++++++++++++++++++ test.js | 10 +++++++ 4 files changed, 149 insertions(+), 3 deletions(-) create mode 100644 dataChan.js create mode 100644 test.js diff --git a/client/index.html b/client/index.html index 1e932d7..0b8f664 100755 --- a/client/index.html +++ b/client/index.html @@ -15,9 +15,20 @@
+ +
...