mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Default fallback colors for gridmap
This commit is contained in:
@@ -1,7 +1,13 @@
|
||||
var modalloading=false;
|
||||
|
||||
let confirmedColor = user_map_custom.qsoconfirm.color;
|
||||
let workedColor = user_map_custom.qso.color;
|
||||
let confirmedColor = 'rgba(144,238,144)';
|
||||
if (typeof user_map_custom.qsoconfirm !== 'undefined') {
|
||||
confirmedColor = user_map_custom.qsoconfirm.color;
|
||||
}
|
||||
let workedColor = 'rgba(255, 0, 0)';
|
||||
if (typeof user_map_custom.qso !== 'undefined') {
|
||||
workedColor = user_map_custom.qso.color;
|
||||
}
|
||||
|
||||
document.addEventListener("DOMContentLoaded", function() {
|
||||
document.querySelectorAll('.dropdown').forEach(dd => {
|
||||
|
||||
Reference in New Issue
Block a user