File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,6 @@ OutlineMlatColor = '#4040FF';
96
96
97
97
SiteCircles = true ; // true to show circles (only shown if the center marker is shown)
98
98
// In miles, nautical miles, or km (depending settings value 'DisplayUnits')
99
- SiteCirclesDistances = new Array ( 100 , 150 , 200 ) ;
100
99
DefaultSiteCirclesCount = 3 ;
101
100
DefaultSiteCirclesBaseDistance = 100 ;
102
101
DefaultSiteCirclesInterval = 50 ;
Original file line number Diff line number Diff line change @@ -1043,12 +1043,15 @@ function refreshPageTitle() {
1043
1043
var subtitle = "" ;
1044
1044
1045
1045
if ( PlaneCountInTitle ) {
1046
- subtitle += TrackedAircraftPositions + '/' + TrackedAircraft ;
1046
+ subtitle += 'Tracking ' + TrackedAircraft + ' Aircraft' ;
1047
1047
}
1048
1048
1049
- if ( MessageRateInTitle ) {
1050
- if ( subtitle ) subtitle += ' | ' ;
1051
- subtitle += MessageRate . toFixed ( 1 ) + '/s' ;
1049
+ if ( MessageRateInTitle && MessageRate ) {
1050
+ if ( subtitle ) {
1051
+ subtitle += ' | ' ;
1052
+ }
1053
+
1054
+ subtitle += MessageRate . toFixed ( 1 ) + ' msg/sec' ;
1052
1055
}
1053
1056
1054
1057
document . title = PageName + ' - ' + subtitle ;
You can’t perform that action at this time.
0 commit comments