Skip to content

Commit d293704

Browse files
committed
fix logos
1 parent 5151e9a commit d293704

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/airportcalc/airportcalc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export function initAirportcalc() {
100100
let [cityArea, airportArea, percentage] = calcCityArea();
101101
if (isNaN(percentage)) percentage = 0;
102102
const newdata =
103-
`<img src="media/ac2-dark.png" style="height: 100%; float: right;">
103+
`<img src="ac2-dark.png" style="height: 100%; float: right;">
104104
<b>City area size:</b> ${Math.round(cityArea)}m^2
105105
<b>| Airport area size:</b> ${Math.round(airportArea)}m^2
106106
<b>| Percentage:</b> <span style="color: ${percentage < 50 ? "green" : "red"};">${Math.round(percentage * 100) / 100}%</span>

src/map/globals.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export class Logo extends L.Control {
3737
onAdd() {
3838
const container = L.DomUtil.create("div");
3939
container.innerHTML =
40-
"<img src='media/map-light.png' style='height: 50px;'>";
40+
"<img src='map-light.png' style='height: 50px;'>";
4141
return container;
4242
}
4343
onRemove() {

0 commit comments

Comments
 (0)