Compare commits

...

1 Commits

Author SHA1 Message Date
aa76443b11 Different wss URL for greinet.com 2021-06-13 17:15:52 +02:00

View File

@ -1,5 +1,5 @@
var msgerChat = null;
var socketurl = 'ws://127.0.0.1:8181/';
var socketurl = 'wss://rpiwss.greinet.com:8083/';
/** Standartnachricht ausgeben und Websocket-Verbindung aufbauen */
window.onload=function(){
@ -104,4 +104,4 @@ function formatDate(date) {
*/
function random(min, max) {
return Math.floor(Math.random() * (max - min) + min);
}
}