Skip to content

Commit 5c70751

Browse files
Fixed log mapping.
1 parent e3db01c commit 5c70751

File tree

2 files changed

+397
-436
lines changed

2 files changed

+397
-436
lines changed

logs.htm

+5-5
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
#linkBar{
4747
background-color:aqua;
4848
}
49-
#hostName {
49+
#title {
5050
text-transform: uppercase;
5151
}
5252
#graphContainer{
@@ -75,17 +75,17 @@
7575
<script src="https://code.jquery.com/jquery-3.2.1.js"></script>
7676
<body>
7777
<p id="linkBar"><a class="systemLink" href="/">HOME</a></p>
78-
<h1 id="hostName">ESP8266-temp-server</h1>
78+
<h1 id="title">ESP8266-temp-server</h1>
7979
<div id="graphContainer">
8080
<canvas class="" id="editorCanvas" width="800px" height="400px"></canvas>
8181
<div id="fileList"></div>
8282
</div>
8383
<script>
84-
const hostName = 'http://192.168.0.182'; //debug/develop
85-
//const hostName = '';
84+
//const hostName = 'http://192.168.0.182'; //debug/develop
85+
const hostName = '';
8686
$( document ).ready( function() {
8787
editorCanvas.width = editorCanvas.width;
88-
if ( hostName ) $('#hostName').append( '<p class="blink">!!!!!debug enabled!!!!!</p>');
88+
if ( hostName ) $('#title').append( '<p class="blink">!!!!!debug enabled!!!!!</p>');
8989
$.get( hostName + '/files', function( data )
9090
{
9191
var fileArray = data.split('\n');

0 commit comments

Comments
 (0)