aboutsummaryrefslogtreecommitdiff
path: root/picarones-elm/index.html
diff options
context:
space:
mode:
authorstuebinm2021-03-07 16:59:38 +0100
committerstuebinm2021-03-07 18:36:43 +0100
commit090041fadec2e2896c3b82ef518096313d452c13 (patch)
treeb24b2753f8316bbf25420e8c121c685d346505a7 /picarones-elm/index.html
parent2ad5d413aa958a1c2fe75ce7aa155576e9a80345 (diff)
parentf4a1ee55987b7c58745dc5865c4ecf30874a3564 (diff)
Join subtrees and integrate meta info / gitignore
git-subtree-dir: picarones-elm git-subtree-mainline: 2ad5d413aa958a1c2fe75ce7aa155576e9a80345 git-subtree-split: f4a1ee55987b7c58745dc5865c4ecf30874a3564
Diffstat (limited to 'picarones-elm/index.html')
-rw-r--r--picarones-elm/index.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/picarones-elm/index.html b/picarones-elm/index.html
new file mode 100644
index 0000000..66fe158
--- /dev/null
+++ b/picarones-elm/index.html
@@ -0,0 +1,31 @@
+<!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>