global award info box

pull/2605/head
HB9HIL 2023-10-20 15:44:34 +02:00
rodzic 7a3002e08e
commit 898396d092
2 zmienionych plików z 25 dodań i 1 usunięć

Wyświetl plik

@ -2388,7 +2388,24 @@ function viewEqsl(picture, callsign) {
});
}
</script>
<script>
$('#displayAwardInfo').click(function (event) {
var awardInfoLines = [
lang_award_info_ln1,
lang_award_info_ln2,
lang_award_info_ln3,
lang_award_info_ln4
];
var awardInfoContent = "";
awardInfoLines.forEach(function (line) {
awardInfoContent += line + "<br><br>";
});
BootstrapDialog.alert({
title: lang_awards_info_title,
message: awardInfoContent,
});
});
</script>
<script>
/*
* Used to fetch QSOs from the logbook in the awards

Wyświetl plik

@ -537,3 +537,10 @@ div#station_logbooks_linked_table_paginate {
#dx, #state, #gridsquare, #sota, #wwff, #pota {
text-transform: uppercase;
}
#awardInfoButton {
display: flex;
align-items: center;
}
#awardInfoButton h2 {
margin-right: 30px;
}