We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 006005d commit e3f5743Copy full SHA for e3f5743
1 file changed
content/wardrive.js
@@ -753,7 +753,7 @@ function updateDistanceUi() {
753
if (distance === null) {
754
distanceInfoEl.textContent = "-";
755
} else {
756
- distanceInfoEl.textContent = `${Math.round(distance)} m away`;
+ distanceInfoEl.textContent = `${Math.round(distance)}m away`;
757
}
758
759
@@ -819,7 +819,7 @@ function updateGpsUi() {
819
820
state.gpsState = "acquired";
821
gpsInfoEl.textContent = `${lat.toFixed(5)}, ${lon.toFixed(5)} (${ageSec}s ago)`;
822
- gpsAccEl.textContent = accM ? `±${Math.round(accM)} m` : "-";
+ gpsAccEl.textContent = accM ? `±${Math.round(accM)}m` : "-";
823
824
825
// Start continuous GPS age display updates
0 commit comments