From 2ecff20678006624baa36f692f534ae81f144559 Mon Sep 17 00:00:00 2001 From: Jon Drews Date: Wed, 3 Aug 2016 22:10:42 -0400 Subject: [PATCH] further fixes for spaces in paths --- src/main/resources/webapp/js/LogStationScripts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/webapp/js/LogStationScripts.js b/src/main/resources/webapp/js/LogStationScripts.js index 1a55553..9e9c410 100644 --- a/src/main/resources/webapp/js/LogStationScripts.js +++ b/src/main/resources/webapp/js/LogStationScripts.js @@ -76,7 +76,7 @@ function addOrAppendLogMessage(logFile, logMessage) { } else { // log file doesn't exist yet. add it with this message console.log("adding new logFile " + logId); - $("#logbody").append("
"+logMessage+"
"); + $("#logbody").append("
"+logMessage+"
"); addNavBarEntry(logFile) } truncateLinesIfNeeded(logId);