Browse Source

webui: fix favicon mime type

inline-source uses 'image/ico' otherwise
supposed to be fixed upstream via the usage of type="image/x-icon" as
link attribute, but there's no npmjs release yet
mcspr-patch-1
Maxim Prokhorov 3 years ago
parent
commit
3dfa06ead1
21 changed files with 25513 additions and 25508 deletions
  1. BIN
      code/espurna/data/index.all.html.gz
  2. BIN
      code/espurna/data/index.curtain.html.gz
  3. BIN
      code/espurna/data/index.garland.html.gz
  4. BIN
      code/espurna/data/index.light.html.gz
  5. BIN
      code/espurna/data/index.lightfox.html.gz
  6. BIN
      code/espurna/data/index.rfbridge.html.gz
  7. BIN
      code/espurna/data/index.rfm69.html.gz
  8. BIN
      code/espurna/data/index.sensor.html.gz
  9. BIN
      code/espurna/data/index.small.html.gz
  10. BIN
      code/espurna/data/index.thermostat.html.gz
  11. +3056
    -3056
      code/espurna/static/index.all.html.gz.h
  12. +2280
    -2280
      code/espurna/static/index.curtain.html.gz.h
  13. +2231
    -2231
      code/espurna/static/index.garland.html.gz.h
  14. +2806
    -2806
      code/espurna/static/index.light.html.gz.h
  15. +2245
    -2245
      code/espurna/static/index.lightfox.html.gz.h
  16. +2269
    -2269
      code/espurna/static/index.rfbridge.html.gz.h
  17. +3836
    -3836
      code/espurna/static/index.rfm69.html.gz.h
  18. +2314
    -2314
      code/espurna/static/index.sensor.html.gz.h
  19. +2217
    -2217
      code/espurna/static/index.small.html.gz.h
  20. +2254
    -2254
      code/espurna/static/index.thermostat.html.gz.h
  21. +5
    -0
      code/gulpfile.js

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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


+ 5
- 0
code/gulpfile.js View File

@ -189,6 +189,11 @@ var inlineHandler = function(modules) {
return;
}
if (source.sourcepath === "favicon.ico") {
source.format = "x-icon";
return;
}
if (source.content) {
return;
}


Loading…
Cancel
Save