mirror of https://github.com/aredn/aredn.git
bug: leaflet css and js files from mesh hosts (#501)
correct issue with the map on the setup page in PR #490
This commit is contained in:
parent
cdd1f8e96c
commit
3f1646682e
|
@ -543,8 +543,12 @@ my ($rc, $maptiles, $leafletcss, $leafletjs);
|
||||||
|
|
||||||
http_header() unless $debug == 2;
|
http_header() unless $debug == 2;
|
||||||
html_header(nvram_get("node") . " setup", 0);
|
html_header(nvram_get("node") . " setup", 0);
|
||||||
print "<link rel='stylesheet' href='${leafletcss}' />\n" if $pingOk;
|
if(($pingOk) || ($leafletcss =~ ".local.mesh")) {
|
||||||
print "<script src='${leafletjs}'></script>\n" if $pingOk;
|
print "<link rel='stylesheet' href='${leafletcss}' />\n";
|
||||||
|
}
|
||||||
|
if(($pingOk) || ($leafletjs =~ ".local.mesh")) {
|
||||||
|
print "<script src='${leafletjs}'></script>\n";
|
||||||
|
}
|
||||||
print "</head>";
|
print "</head>";
|
||||||
print "<body><center>\n";
|
print "<body><center>\n";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue