0.0.4
[henge/kiak.git] / remote-server.html
diff --git a/remote-server.html b/remote-server.html
deleted file mode 100644 (file)
index 2b65a20..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE HTML>
-<html>
-  <head>
-  <title>Strapp.io Host</title>
-  <script type="text/javascript">
-  document.body = document.createElement('body')
-  const strappDiv = document.createElement('div')
-  document.body.appendChild(strappDiv)
-  strappDiv.innerHTML = "Connection Dead"
-  if ("WebSocket" in window) {
-    const wsock = new WebSocket("wss://$HOST:$PORT")
-    wsock.onopen = () => {
-      wsock.send("Test message")
-      strappDiv.innerHTML = "Sent test"
-    }
-    wsock.onmessage = (evt) => {
-      strappDiv.innerHTML = "Got Response <br/>" + evt.data
-    }
-  } else {
-    strappDiv.innerHTML = "Your browser does not support Strapp"
-  }
-  </script>
-  </head>
-</html>