mirror of
https://github.com/jketterl/openwebrx.git
synced 2025-12-06 07:12:09 +01:00
5 lines
120 B
JavaScript
5 lines
120 B
JavaScript
|
|
$(function(){
|
||
|
|
$.ajax('/api/features').done(function(data){
|
||
|
|
$('body').html(JSON.stringify(data));
|
||
|
|
});
|
||
|
|
});
|