Remove unworkedColor where not used

This commit is contained in:
phl0
2025-11-25 13:10:54 +01:00
parent 4794844f7b
commit 13367b4e69
2 changed files with 0 additions and 12 deletions

View File

@@ -7,12 +7,6 @@ let confirmedColor = user_map_custom.qsoconfirm.color;
// Take station color for paper QSLs here
let paperColor = user_map_custom.station.color
let workedColor = user_map_custom.qso.color;
let unworkedColor = '';
if (typeof(user_map_custom.unworked) !== 'undefined') {
unworkedColor = user_map_custom.unworked.color;
} else {
unworkedColor = 'red';
}
function gridPlot(form, dxcc) {
$(".ld-ext-right-plot").addClass('running');

View File

@@ -1,11 +1,5 @@
let confirmedColor = user_map_custom.qsoconfirm.color;
let workedColor = user_map_custom.qso.color;
let unworkedColor = '';
if (typeof(user_map_custom.unworked) !== 'undefined') {
unworkedColor = user_map_custom.unworked.color;
} else {
unworkedColor = 'red';
}
$('#band').change(function(){
var band = $("#band option:selected").text();