preparing to send other commands than 'reload' to clients
This commit is contained in:
parent
644c28ae75
commit
a1710cba4a
@ -33,7 +33,12 @@
|
|||||||
|
|
||||||
socket.onmessage = function(event) {
|
socket.onmessage = function(event) {
|
||||||
//alert(`[message] Data received from server: ${event.data}`);
|
//alert(`[message] Data received from server: ${event.data}`);
|
||||||
location.reload(true)
|
if (event.data == "reload") {
|
||||||
|
location.reload(true);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
alert('unknown command: '+event.data);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
socket.onclose = function(event) {
|
socket.onclose = function(event) {
|
||||||
|
Loading…
Reference in New Issue
Block a user