Bandmap2QSO Basics

这个提交包含在:
int2001 2023-07-26 16:38:38 +00:00
父节点 701404c820
当前提交 1e6e368362
找不到此签名对应的密钥
GPG 密钥 ID: DFB1C13CD2DB037B
共有 2 个文件被更改,包括 15 次插入0 次删除

查看文件

@ -15,6 +15,12 @@ $(function() {
'createdCell': function (td, cellData, rowData, row, col) {
$(td).addClass("kHz");
}
},
{
'targets': 2,
'createdCell': function (td, cellData, rowData, row, col) {
$(td).addClass("spotted_call");
}
}
]
});
@ -112,6 +118,12 @@ $(function() {
}
});
$(document).on('click','.spotted_call', function() {
var bc = new BroadcastChannel('qso_wish');
bc.postMessage(this.innerText);
console.log(this.innerText);
});
$("#menutoggle").on("click", function() {
if ($('.navbar').is(":hidden")) {
$('.navbar').show();

查看文件

@ -1,5 +1,8 @@
$( document ).ready(function() {
var bc = new BroadcastChannel('qso_wish');
bc.onmessage = function (ev) { console.log(ev); } /* receive */
$("#locator")
.popover({ placement: 'top', title: 'Gridsquare Formatting', content: "Enter multiple (4-digit) grids separated with commas. For example: IO77,IO78" })
.focus(function () {