From a968f03c3ae3b253bcc56960816bdb894b2877eb Mon Sep 17 00:00:00 2001 From: Malcolm Robb Date: Fri, 27 Sep 2013 10:57:26 +0100 Subject: [PATCH] Stop heading using multiple lines In the table view of aircraft, the heading was displayed as "330 (NW)" or similar. However, this cause the entry to scroll over into two lines of text, and reduces the number of planes that can be seen in the table at any one time. There probably should be a way to make the table view wider by scrolling it, but I can't see any way to do that. So for the moment I've commented out the extra (NW) bit. --- public_html/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public_html/script.js b/public_html/script.js index 9371ce0..05d29b7 100644 --- a/public_html/script.js +++ b/public_html/script.js @@ -451,7 +451,7 @@ function refreshTableInfo() { html += ''; if (tableplane.vTrack) { html += normalizeTrack(tableplane.track, tableplane.vTrack)[2]; - html += ' (' + normalizeTrack(tableplane.track, tableplane.vTrack)[1] + ')'; + // html += ' (' + normalizeTrack(tableplane.track, tableplane.vTrack)[1] + ')'; } else { html += ' '; }