Two typos fixed in gmap.html.

This commit is contained in:
antirez 2013-02-04 23:09:05 +01:00
parent c991d658c6
commit ff0fe38722

View File

@ -90,9 +90,9 @@
if (p.flight.length) {
html += '<b>'+p.flight+'</b><br>';
}
html += 'Altitude: '+p.altitude+' feets<br>';
html += 'Altitude: '+p.altitude+' feet<br>';
html += 'Speed: '+p.speed+' knots<br>';
html += 'Coordiates: '+p.lat+', '+p.lon+'<br>';
html += 'Coordinates: '+p.lat+', '+p.lon+'<br>';
i.innerHTML = html;
}