Corrected some spelling on the Distances worked analyics page

这个提交包含在:
Peter Goodhall 2020-02-20 15:14:24 +00:00
父节点 3e9132e1c0
当前提交 23a64dd489
共有 2 个文件被更改,包括 7 次插入7 次删除

查看文件

@ -58,7 +58,7 @@ class Distances_model extends CI_Model
'Callsign' => '', 'Callsign' => '',
'Grid' => '', 'Grid' => '',
'Distance' => '', 'Distance' => '',
'Qsoes' => '', 'QSOs' => '',
'Grids' => '' 'Grids' => ''
); );

查看文件

@ -950,7 +950,7 @@ $(document).ready(function(){
}, },
yAxis: { yAxis: {
title: { title: {
text: '# QSOes' text: '# QSOs'
} }
}, },
navigator: { navigator: {
@ -971,7 +971,7 @@ $(document).ready(function(){
if(this.point) { if(this.point) {
return "Distance: " + options.xAxis.categories[this.point.x] + return "Distance: " + options.xAxis.categories[this.point.x] +
"<br />Callsign(s) worked (max 5 shown): " + myComments[this.point.x] + "<br />Callsign(s) worked (max 5 shown): " + myComments[this.point.x] +
"<br />Number of qsoes: <strong>" + series.data[this.point.x] + "</strong>"; "<br />Number of QSOs: <strong>" + series.data[this.point.x] + "</strong>";
} }
} }
}, },
@ -987,16 +987,16 @@ $(document).ready(function(){
$.each(tmp.qsodata, function(){ $.each(tmp.qsodata, function(){
myComments.push(this.calls); myComments.push(this.calls);
options.xAxis.categories.push(this.dist); options.xAxis.categories.push(this.dist);
series.name = 'Number of qsoes'; series.name = 'Number of QSOs';
series.data.push(this.count); series.data.push(this.count);
}); });
options.series.push(series); options.series.push(series);
$('#information').html(tmp.qrb.Qsoes + " contacts were plotted.<br /> Your longest contact was " + tmp.qrb.Callsign $('#information').html(tmp.qrb.Qsoes + " contacts were plotted.<br /> Your furthest contact was " + tmp.qrb.Callsign
+ " in locator "+ tmp.qrb.Grid + " in gridsquare "+ tmp.qrb.Grid
+" and the distance was " +" the distance was "
+tmp.qrb.Distance +"km."); +tmp.qrb.Distance +"km.");
var chart = new Highcharts.Chart(options); var chart = new Highcharts.Chart(options);