diff --git a/public_html/config.js b/public_html/config.js index da7a756..86021b7 100644 --- a/public_html/config.js +++ b/public_html/config.js @@ -96,7 +96,6 @@ OutlineMlatColor = '#4040FF'; SiteCircles = true; // true to show circles (only shown if the center marker is shown) // In miles, nautical miles, or km (depending settings value 'DisplayUnits') -SiteCirclesDistances = new Array(100,150,200); DefaultSiteCirclesCount = 3; DefaultSiteCirclesBaseDistance = 100; DefaultSiteCirclesInterval = 50; diff --git a/public_html/script.js b/public_html/script.js index 9bb7936..dd1b02a 100644 --- a/public_html/script.js +++ b/public_html/script.js @@ -1043,12 +1043,15 @@ function refreshPageTitle() { var subtitle = ""; if (PlaneCountInTitle) { - subtitle += TrackedAircraftPositions + '/' + TrackedAircraft; + subtitle += 'Tracking ' + TrackedAircraft + ' Aircraft'; } - if (MessageRateInTitle) { - if (subtitle) subtitle += ' | '; - subtitle += MessageRate.toFixed(1) + '/s'; + if (MessageRateInTitle && MessageRate) { + if (subtitle) { + subtitle += ' | '; + } + + subtitle += MessageRate.toFixed(1) + ' msg/sec'; } document.title = PageName + ' - ' + subtitle;