diff --git a/public_html/script.js b/public_html/script.js
index a6bcd66..9a3186d 100644
--- a/public_html/script.js
+++ b/public_html/script.js
@@ -103,7 +103,13 @@ function refreshSelectedInfo() {
}
var html = '
';
- html += '| '+p.flight+' |
';
+ if (p.flight != "") {
+ html += '| '+p.flight+' ';
+ html += '[FlightStats] |
';
+ } else {
+ html += '| |
';
+ }
html += '| ICAO: | '+p.hex+' |
';
if (p.squawk != "0000") {
html += '| Squawk: | '+p.squawk+' |
';
@@ -125,7 +131,7 @@ function refreshSelectedInfo() {
function refreshTableInfo() {
var html = '';
- html += '';
+ html += '';
html += '| hex | ';
html += 'Flight | ';
html += 'Squawk | ';
diff --git a/public_html/style.css b/public_html/style.css
index 5ed73c0..72324b2 100644
--- a/public_html/style.css
+++ b/public_html/style.css
@@ -1,5 +1,6 @@
-html { height: 100% }
+html { height: 100%; }
body { height: 100%; margin: 0; padding: 0; font-size: small;}
+a { color: blue; }
#map_canvas {
height: 100%;
margin-right:390px;