s/5 seconds/1 second/

This commit is contained in:
Fabio Manganiello 2018-04-09 23:56:43 +02:00
parent c81e969097
commit cb6894b6f8
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ $(document).ready(function() {
console.log('Websocket closed, code: ' + event.code);
websocketReconnectInterval = setInterval(function() {
initWebsocket();
}, 5000);
}, 1000);
};
};