Added sidenav and random logo

This commit is contained in:
Sagi Frimer
2019-03-02 21:17:48 +02:00
parent 81e6a917c4
commit 34a8def31f
5 changed files with 59 additions and 31 deletions

7
Site/JS/main.js Normal file
View File

@@ -0,0 +1,7 @@
let ws = new WebSocket("ws://localhost:8888/websocket");
ws.onopen = function () {
ws.send("hello");
}
ws.onmessage = function (ev) {
alert(ev.data);
}