From 572387ae4818b8f702133143fe0b05a60afdff79 Mon Sep 17 00:00:00 2001 From: Markus Zolliker Date: Tue, 1 Jul 2025 08:48:12 +0200 Subject: [PATCH] change color of console debug message otherwise it is badly readable in Safari --- client/jsFiles/SEAWebClientCommunication.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/jsFiles/SEAWebClientCommunication.js b/client/jsFiles/SEAWebClientCommunication.js index b807388..9cd9280 100644 --- a/client/jsFiles/SEAWebClientCommunication.js +++ b/client/jsFiles/SEAWebClientCommunication.js @@ -313,7 +313,7 @@ function reqJSON(s, url, successHandler, errorHandler) { : new ActiveXObject('Microsoft.XMLHTTP'); if (debugCommunication) { console.log("%cto server (reqJSON): %s", - "color:white;background:darkgreen", url); + "background:yellow", url); } xhr.open('get', url, true); xhr.onreadystatechange = function() {