Merge pull request #239 from int2001/info_show

Fixes a bug where qrz/hamqth links aren't shown
This commit is contained in:
Joerg (DJ7NT)
2024-03-27 12:41:52 +01:00
committed by GitHub

View File

@@ -849,8 +849,10 @@ $( document ).ready(function() {
}
$('#qrz_info').html('<a target="_blank" href="https://www.qrz.com/db/'+callsign+'"><img width="30" height="30" src="'+base_url+'images/icons/qrz.com.png"></a>');
$('#qrz_info').attr('title', 'Lookup '+callsign+' info on qrz.com').removeClass('d-none');
$('#qrz_info').show();
$('#hamqth_info').html('<a target="_blank" href="https://www.hamqth.com/'+callsign+'"><img width="30" height="30" src="'+base_url+'images/icons/hamqth.com.png"></a>');
$('#hamqth_info').attr('title', 'Lookup '+callsign+' info on hamqth.com').removeClass('d-none');
$('#hamqth_info').show();
var $dok_select = $('#darc_dok').selectize();
var dok_selectize = $dok_select[0].selectize;