Skip to content

Commit 9c50038

Browse files
committed
I don't know how JS works
1 parent 1489ba7 commit 9c50038

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

site/static/home.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ function knockSocket(location) {
3939
if (location.protocol !== 'https:') {
4040
socketProtocol = 'ws';
4141
}
42-
host = window.location.host;
43-
url = `${socketProtocol}://${host}/knock/socket/${location}`;
44-
ws = new WebSocket(url);
42+
let host = window.location.host;
43+
let url = `${socketProtocol}://${host}/knock/socket/${location}`;
44+
const ws = new WebSocket(url);
4545

4646
ws.onopen = function(){
4747
console.log("Connected to websocket :)")
@@ -55,7 +55,7 @@ function knockSocket(location) {
5555
}
5656

5757
ws.onmessage = function(msg) {
58-
data = JSON.parse(msg.data);
58+
let data = JSON.parse(msg.data);
5959
console.log(data)
6060
if (data.Event === "LOCATION") {
6161
requestTitle.innerText = "Requesting Access at " + data.Location

0 commit comments

Comments
 (0)