mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Remove unworkedColor where not used
This commit is contained in:
@@ -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');
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user