Bandmap2QSO Basics

pull/2331/head
int2001 2023-07-26 16:38:38 +00:00
rodzic 701404c820
commit 1e6e368362
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: DFB1C13CD2DB037B
2 zmienionych plików z 15 dodań i 0 usunięć

Wyświetl plik

@ -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();

Wyświetl plik

@ -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 () {