mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Skip multi-zone DXCCs on check all
This commit is contained in:
@@ -2725,7 +2725,9 @@ function saveOptions() {
|
||||
$('#checkBoxAllItuZones').change(function (event) {
|
||||
if (this.checked) {
|
||||
$('#incorrectituzonetable tbody tr').each(function (i) {
|
||||
selectQsoIdDxcc($(this).first().closest('tr').attr('id')?.replace(/\D/g, ''), 'incorrectituzonetable');
|
||||
if (!$(this).first().closest('tr').find("td[id='ituZones']").text().includes(',')) {
|
||||
selectQsoIdDxcc($(this).first().closest('tr').attr('id')?.replace(/\D/g, ''), 'incorrectituzonetable');
|
||||
}
|
||||
});
|
||||
} else {
|
||||
$('#incorrectituzonetable tbody tr').each(function (i) {
|
||||
|
||||
Reference in New Issue
Block a user