We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 148af23 commit 4c27380Copy full SHA for 4c27380
js/tracker.js
@@ -1553,7 +1553,7 @@ function graphAddPosition(vcallsign, new_data) {
1553
for(var k in vehicle.graph_data_map) data_matrix[vehicle.graph_data_map[k]] = [ts, null];
1554
1555
$.each(json, function(k, v) {
1556
- if(isNaN(v) || v=="") return; // only take data that is numerical
+ if(isNaN(v) || v==="") return; // only take data that is numerical
1557
1558
i = (k in vehicle.graph_data_map) ? vehicle.graph_data_map[k] : data.length;
1559
0 commit comments