File tree 2 files changed +397
-436
lines changed
2 files changed +397
-436
lines changed Original file line number Diff line number Diff line change 46
46
# linkBar {
47
47
background-color : aqua;
48
48
}
49
- # hostName {
49
+ # title {
50
50
text-transform : uppercase;
51
51
}
52
52
# graphContainer {
75
75
< script src ="https://code.jquery.com/jquery-3.2.1.js "> </ script >
76
76
< body >
77
77
< 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 >
79
79
< div id ="graphContainer ">
80
80
< canvas class ="" id ="editorCanvas " width ="800px " height ="400px "> </ canvas >
81
81
< div id ="fileList "> </ div >
82
82
</ div >
83
83
< 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 = '' ;
86
86
$ ( document ) . ready ( function ( ) {
87
87
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>' ) ;
89
89
$ . get ( hostName + '/files' , function ( data )
90
90
{
91
91
var fileArray = data . split ( '\n' ) ;
You can’t perform that action at this time.
0 commit comments