add some basic framework for the featurereport
This commit is contained in:
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));
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user