aboutsummaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--index.html31
1 files changed, 0 insertions, 31 deletions
diff --git a/index.html b/index.html
deleted file mode 100644
index 66fe158..0000000
--- a/index.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE HTML>
-<html>
-<head>
- <meta charset="UTF-8">
- <title>Main</title>
- <script src="Main.js"></script>
- <link rel="stylesheet" type="text/css" href="document.css" />
-</head>
-
-<body>
- <div id="elm"></div>
- <script>
- var app = Elm.Main.init({
- node: document.getElementById('elm')
- });
-
- let ws = new WebSocket("ws://localhost:9160")
-
- ws.onopen = () => ws.send ("{\"room\":\"testroom\"}");
-
- ws.onmessage = function(msg) {
- console.log(msg.data)
- app.ports.recvPort.send(msg.data)
- }
-
- app.ports.sendPort.subscribe(function(msg) {
- ws.send(msg)
- })
- </script>
-</body>
-</html>