Updated Dutch, improved back button in web app.

This commit is contained in:
Ylian Saint-Hilaire
2019-12-19 12:10:50 -08:00
parent a0479092eb
commit 98dbbfde25
37 changed files with 906 additions and 749 deletions

View File

@@ -607,7 +607,7 @@
var url = window.location.protocol.replace('http', 'ws') + '//' + window.location.host + window.location.pathname.substring(0, window.location.pathname.lastIndexOf('/')) + '/meshrelay.ashx?id=' + args.id;
if ((args.auth != null) && (args.auth != '')) { url += '&auth=' + args.auth; }
socket = new WebSocket(url);
socket.onopen = function () { state = 1; displayControl("Wachten op andere gebruiker ..."); }
socket.onopen = function () { state = 1; displayControl("Wachten op de gebruiker ..."); }
socket.onerror = function (e) { /*console.error(e);*/ }
socket.onclose = function () { disconnect(); }
socket.onmessage = function (msg) {