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 = '
Flight | Altitude | Speed | Track | Lat | Long | Seen | Msgs | '; - for (var p in Planes) { - if (p == Selected) { - html += '
' + Planes[p].flight + ' | '; - html += '' + Planes[p].altitude + ' | '; - html += '' + Planes[p].speed + ' | '; - html += '' + Planes[p].track + ' | '; - html += '' + Planes[p].lat + ' | '; - html += '' + Planes[p].lon + ' | '; - html += '' + Planes[p].seen + ' | '; - html += '' + Planes[p].messages + ' | '; - html += '