initial commit

This commit is contained in:
Sebastian Hugentobler 2023-02-23 12:09:27 +01:00
commit a1c91f6d4e
Signed by: shu
GPG key ID: BB32CF3CA052C2F0
14 changed files with 1633 additions and 0 deletions

14
assets/index.html Normal file
View file

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>CRDT Playground</title>
</head>
<body onload="setup()">
<textarea id="doctext" name="story" rows="5" cols="33" oninput="" >
It was a dark and stormy night...
</textarea>
<script src="/index.js"></script>
</body>
</html>