mirror of
https://github.com/jketterl/openwebrx.git
synced 2025-12-06 07:12:09 +01:00
7 lines
257 B
JavaScript
7 lines
257 B
JavaScript
function FrequencyDisplay(element) {
|
|
this.element = $(element);
|
|
}
|
|
|
|
FrequencyDisplay.prototype.setFrequency = function(freq) {
|
|
this.element.html((freq / 1e6).toLocaleString(undefined, {maximumFractionDigits: 4, minimumFractionDigits: 3}) + " MHz");
|
|
} |