Skip to content

Commit

Permalink
further fixes for spaces in paths
Browse files Browse the repository at this point in the history
  • Loading branch information
jdrews committed Aug 4, 2016
1 parent 6d73878 commit 2ecff20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/webapp/js/LogStationScripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -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("<div id="+logId+" class=logFile title="+logFile+"><div class=logMessage>"+logMessage+"<br/></div></div>");
$("#logbody").append("<div id="+logId+" class=logFile title=\'"+logFile+"\'><div class=logMessage>"+logMessage+"<br/></div></div>");
addNavBarEntry(logFile)
}
truncateLinesIfNeeded(logId);
Expand Down

0 comments on commit 2ecff20

Please sign in to comment.