diff --git a/public_html/script.js b/public_html/script.js index 3662f68..cb04863 100644 --- a/public_html/script.js +++ b/public_html/script.js @@ -108,31 +108,6 @@ function refreshTableInfo() { i.innerHTML = html; } -function refreshTableInfo() { - var i = document.getElementById('tabinfo'); - - var html = ''; - html += ''; - for (var p in Planes) { - if (p == Selected) { - html += ''; - } else { - html += ''; - } - html += ''; - html += ''; - html += ''; - html += ''; - html += ''; - html += ''; - html += ''; - html += ''; - html += ''; - } - html += '
FlightAltitudeSpeedTrackLatLongSeenMsgs
' + Planes[p].flight + '' + Planes[p].altitude + '' + Planes[p].speed + '' + Planes[p].track + '' + Planes[p].lat + '' + Planes[p].lon + '' + Planes[p].seen + '' + Planes[p].messages + '
'; - i.innerHTML = html; -} - function fetchData() { $.getJSON('data.json', function(data) { var stillhere = {} diff --git a/public_html/style.css b/public_html/style.css index 26837fc..1226b04 100644 --- a/public_html/style.css +++ b/public_html/style.css @@ -42,8 +42,3 @@ body { height: 100%; margin: 0; padding: 0; } cursor: pointer; } -#tableinfo { -font-size: x-small; -font-family: monospace; -} -