From 3a4bbce8d0839b4ee75bdd6c4d1e77f36697fa86 Mon Sep 17 00:00:00 2001 From: Jan-Piet Mens Date: Thu, 4 Feb 2016 12:05:21 +0100 Subject: [PATCH] avoid pesky ERROR from mucking up map --- docroot/last/websock.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docroot/last/websock.js b/docroot/last/websock.js index 163ebe7..e0135e4 100644 --- a/docroot/last/websock.js +++ b/docroot/last/websock.js @@ -52,7 +52,7 @@ function ws_connect() { }; ws.onerror = function(ev) { - out('ERROR: ' + ev.data); + // out('ERROR: ' + ev.data); }; }