Update index.html

Add link to radiosondy.info when "aprs_server" is set to radiosondy.info, otherwise add link to aprs.fi
pull/358/head
Piter-NS 2021-01-17 17:24:13 +01:00 zatwierdzone przez GitHub
rodzic 830a018de5
commit c27f0c2e68
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

@ -249,7 +249,11 @@
if(autorx_config.habitat_enabled ==true){
sonde_id_data.id = "<a href='http://sondehub.org/" + sonde_id + "' target='_blank'>" + sonde_id + "</a>";
} else {
sonde_id_data.id = "<a href='https://radiosondy.info/sonde_archive.php?sondenumber=" + sonde_id + "' target='_blank'>" + sonde_id + "</a>";
if(autorx_config.aprs_server == "radiosondy.info"){
sonde_id_data.id = "<a href='https://radiosondy.info/sonde_archive.php?sondenumber=" + sonde_id + "' target='_blank'>" + sonde_id + "</$
} else {
sonde_id_data.id = "<a href='https://aprs.fi/#!call=" + sonde_id + "&timerange=3600&tail=3600' target='_blank'>" + sonde_id + "</a>";
}
}
}