mirror of
https://github.com/ha7ilm/openwebrx.git
synced 2026-02-02 13:34:20 +01:00
better sorting for the legend
This commit is contained in:
parent
433111124f
commit
bdb6d75f83
|
|
@ -44,7 +44,12 @@
|
|||
if (!colorKeys[id]) {
|
||||
var keys = Object.keys(colorKeys);
|
||||
keys.push(id);
|
||||
keys.sort();
|
||||
keys.sort(function(a, b) {
|
||||
var pa = parseFloat(a);
|
||||
var pb = parseFloat(b);
|
||||
if (isNaN(pa) || isNaN(pb)) return a.localeCompare(b);
|
||||
return pa - pb;
|
||||
});
|
||||
var colors = colorScale.colors(keys.length);
|
||||
colorKeys = {};
|
||||
keys.forEach(function(key, index) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue