From 6f228b9c88c615c6c51ab8a13072759cbac25b28 Mon Sep 17 00:00:00 2001 From: terribl Date: Sun, 12 May 2013 09:53:07 +0300 Subject: [PATCH] Upstream merge finalized --- public_html/script.js | 25 ------------------------- public_html/style.css | 5 ----- 2 files changed, 30 deletions(-) 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; -} -