global award info box
这个提交包含在:
父节点
7a3002e08e
当前提交
898396d092
共有 2 个文件被更改,包括 25 次插入 和 1 次删除
|
|
@ -2388,7 +2388,24 @@ function viewEqsl(picture, callsign) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
</script>
|
</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>
|
<script>
|
||||||
/*
|
/*
|
||||||
* Used to fetch QSOs from the logbook in the awards
|
* Used to fetch QSOs from the logbook in the awards
|
||||||
|
|
|
||||||
|
|
@ -537,3 +537,10 @@ div#station_logbooks_linked_table_paginate {
|
||||||
#dx, #state, #gridsquare, #sota, #wwff, #pota {
|
#dx, #state, #gridsquare, #sota, #wwff, #pota {
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
#awardInfoButton {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
#awardInfoButton h2 {
|
||||||
|
margin-right: 30px;
|
||||||
|
}
|
||||||
正在加载…
在新工单中引用