cbayer-ccc
Tag Loomis 2024-02-17 14:17:11 -08:00
rodzic 8b9c7b1efc
commit 90847ef94f
2 zmienionych plików z 6 dodań i 6 usunięć

Wyświetl plik

@ -442,12 +442,12 @@ function addQSO(
if (details.grid.length < 6 && (details.grid.substr(0, 4) == finalGrid.substr(0, 4) || details.grid.length == 0))
{
details.grid = finalGrid;
details.fieild = finalGrid.substring(0,2);
details.fieild = finalGrid.substring(0, 2);
}
else if (details.grid.length != 0 && confirmed == true && canWrite == true)
{
details.grid = finalGrid;
details.fieild = finalGrid.substring(0,2);
details.fieild = finalGrid.substring(0, 2);
}
}
@ -489,7 +489,7 @@ function addQSO(
{
details = {};
details.grid = finalGrid;
details.fieild = finalGrid.substring(0,2);
details.fieild = finalGrid.substring(0, 2);
details.RSTsent = finalRSTsent;
details.RSTrecv = finalRSTrecv;
details.msg = "-";

Wyświetl plik

@ -1046,7 +1046,7 @@ function addLiveCallsign(
var newCallsign = {};
newCallsign.DEcall = finalDXcall;
newCallsign.grid = finalGrid;
newCallsign.field = finalGrid.substring(0,2);
newCallsign.field = finalGrid.substring(0, 2);
newCallsign.mode = mode;
newCallsign.band = band;
newCallsign.msg = finalMsg;
@ -1147,7 +1147,7 @@ function addLiveCallsign(
callsign.wspr = wspr;
if (finalGrid.length > callsign.grid.length) callsign.grid = finalGrid;
if (finalGrid.length == callsign.grid.length && finalGrid != callsign.grid) callsign.grid = finalGrid;
callsign.field = callsign.grid.substring(0,2);
callsign.field = callsign.grid.substring(0, 2);
if (finalRSTsent != null) callsign.RSTsent = finalRSTsent;
if (finalRSTrecv != null) callsign.RSTrecv = finalRSTrecv;
callsign.vucc_grids = [];
@ -5028,7 +5028,7 @@ function setHomeGridsquare()
newCallsign.DEcall = GT.appSettings.myCall;
newCallsign.grid = GT.appSettings.myGrid;
newCallsign.field = newCallsign.grid.substring(0,2);
newCallsign.field = newCallsign.grid.substring(0, 2);
newCallsign.wspr = null;
newCallsign.msg = GT.appSettings.myGrid;
newCallsign.RSTsent = "-";