mirror of
https://github.com/ha7ilm/openwebrx.git
synced 2026-04-04 14:07:32 +00:00
add some basic framework for the featurereport
This commit is contained in:
parent
f5f23e6fbc
commit
e61c0dcc12
5 changed files with 33 additions and 9 deletions
6
htdocs/features.html
Normal file
6
htdocs/features.html
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
<HTML><HEAD>
|
||||
<TITLE>OpenWebRX Feature report</TITLE>
|
||||
<script src="static/jquery-3.2.1.min.js"></script>
|
||||
<script src="static/features.js"></script>
|
||||
</HEAD><BODY>
|
||||
</BODY></HTML>
|
||||
5
htdocs/features.js
Normal file
5
htdocs/features.js
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
$(function(){
|
||||
$.ajax('/api/features').done(function(data){
|
||||
$('body').html(JSON.stringify(data));
|
||||
});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue