diff --git a/js/tracker.js b/js/tracker.js index 0834e4d..8ea4a74 100644 --- a/js/tracker.js +++ b/js/tracker.js @@ -3921,6 +3921,18 @@ function updateChase(r) { } } +function showRecoveredMap(serial) { + + $("header .search input[type='text']").val(serial); + + wvar.query = serial; + stopFollow(); + zoomed_in = false; + wvar.zoom = true; + + clean_refresh(wvar.mode, true, true); +}; + function updateReceivers(r) { if(!r) return; ls_receivers = true; @@ -4025,7 +4037,7 @@ function updateRecoveryMarker(recovery) { html += "
Time: "+formatDate(stringToDateUTC(recovery.datetime))+"
"; html += "
Reported by: "+recovery.recovered_by+"
"; html += "
Notes: "+$('
').text(recovery.description).html()+"
"; - html += "
Flight Path: "+recovery.serial+"
"; + html += "
Flight Path: "+recovery.serial+"
"; html += "
"; @@ -4137,7 +4149,7 @@ function updateRecoveryPane(r){ html += "
Time: "+formatDate(stringToDateUTC(r[i].datetime))+"
"; html += "
Reported by: "+r[i].recovered_by+"
"; html += "
Notes: "+$('
').text(r[i].description).html()+"
"; - html += "
Flight Path: "+r[i].serial+"
"; + html += "
Flight Path: "+r[i].serial+"
"; html += "
"; html += "
"; }