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.
This commit is contained in:
Malcolm Robb 2013-09-27 10:57:26 +01:00
parent 2e43a9eb63
commit a968f03c3a

View file

@ -451,7 +451,7 @@ function refreshTableInfo() {
html += '<td align="right">';
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 += '&nbsp;';
}