added table fillers
This commit is contained in:
@@ -12,8 +12,9 @@ function updateData () {
|
|||||||
globalObject = data;
|
globalObject = data;
|
||||||
})
|
})
|
||||||
.done(function () {
|
.done(function () {
|
||||||
fillTable(globalObject, $('table'));
|
fillTable(globalObject, $('#specter'));
|
||||||
graphSpectralData(globalObject, $('#spectrogram'));
|
graphSpectralData(globalObject, $('#spectrogram'));
|
||||||
|
fillLuxUv(globalObject, $('#luxuv'));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+2
-2
@@ -19,7 +19,7 @@
|
|||||||
<h3>Spectrogram</h3>
|
<h3>Spectrogram</h3>
|
||||||
<canvas id="spectrogram" width="640px" height="480"></canvas>
|
<canvas id="spectrogram" width="640px" height="480"></canvas>
|
||||||
<h3>Spectral readings</h3>
|
<h3>Spectral readings</h3>
|
||||||
<table class="table table-sm">
|
<table class="table table-sm" id="specter">
|
||||||
<thead class="thead-dark">
|
<thead class="thead-dark">
|
||||||
<tr>
|
<tr>
|
||||||
<th>Band</th>
|
<th>Band</th>
|
||||||
@@ -119,7 +119,7 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<br>
|
<br>
|
||||||
<table class="table">
|
<table class="table" id="luxuv">
|
||||||
<thead class="thead-dark">
|
<thead class="thead-dark">
|
||||||
<tr>
|
<tr>
|
||||||
<th>Parameter</th>
|
<th>Parameter</th>
|
||||||
|
|||||||
Reference in New Issue
Block a user