Merge remote-tracking branch 'origin/flags' into flags

Conflicts:
	public_html/script.js
This commit is contained in:
Dynomity 2015-08-30 10:19:53 -06:00
commit 9e00c2d0d3
2 changed files with 4 additions and 3 deletions

View file

@ -71,6 +71,7 @@ function processReceiverUpdate(data) {
plane.tr = PlaneRowTemplate.cloneNode(true);
// Lookup ICAO country flag
var hexa = +("0x" + hex);
for (var i = 0; i < ICAO_Codes.length; i++) {
@ -608,6 +609,7 @@ function refreshSelected() {
$('#selected_seen').text(selected.seen.toFixed(1) + 's');
}
// add the country and flag
$('#selected_country').text(selected.Country);
if (selected.Flag !== null) {
@ -618,7 +620,6 @@ function refreshSelected() {
}
if (selected.position === null) {
$('#selected_position').text('n/a');
$('#selected_follow').addClass('hidden');