mirror of
https://github.com/jketterl/openwebrx.git
synced 2025-12-06 07:12:09 +01:00
10 lines
299 B
JavaScript
10 lines
299 B
JavaScript
$.fn.bookmarkDialog = function() {
|
|
var $el = this;
|
|
return {
|
|
setModes: function(modes) {
|
|
$el.find('#modulation').html(modes.map(function(m) {
|
|
return '<option value="' + m.modulation + '">' + m.name + '</option>';
|
|
}).join(''));
|
|
}
|
|
}
|
|
} |