Browse Source

Show hostname is right case in menu header (#799)

rfm69
Xose Pérez 6 years ago
parent
commit
0a1ad46100
4 changed files with 2816 additions and 2818 deletions
  1. BIN
      code/espurna/data/index.html.gz
  2. +2815
    -2815
      code/espurna/static/index.html.gz.h
  3. +1
    -0
      code/html/custom.css
  4. +0
    -3
      code/html/custom.js

BIN
code/espurna/data/index.html.gz View File


+ 2815
- 2815
code/espurna/static/index.html.gz.h
File diff suppressed because it is too large
View File


+ 1
- 0
code/html/custom.css View File

@ -6,6 +6,7 @@
font-size: 100%; font-size: 100%;
padding: .5em .5em; padding: .5em .5em;
white-space: normal; white-space: normal;
text-transform: initial;
} }
.pure-g { .pure-g {


+ 0
- 3
code/html/custom.js View File

@ -1189,9 +1189,6 @@ function processData(data) {
} }
// Pre-process // Pre-process
if ("network" === key) {
value = value.toUpperCase();
}
if ("mqttStatus" === key) { if ("mqttStatus" === key) {
value = value ? "CONNECTED" : "NOT CONNECTED"; value = value ? "CONNECTED" : "NOT CONNECTED";
} }


Loading…
Cancel
Save