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