1
0
Fork 0
fgdata/Phi/topics/Environment/Weather/Aloft.html
Torsten Dreyer 190e8449ce Phi: move URL to the browsers root directory
- rename the directory from webgui to Phi
- let the webserver's root point to Phi instead of Docs
- redirect old /gui/ url to the new location (/)
2015-04-18 13:03:46 +02:00

26 lines
1.1 KiB
HTML

<table class="ui-widget-content ui-corner-all">
<thead>
<tr>
<th>Altitude (ft)</th>
<th colspan="2">Wind (dir/kt)</th>
<th>Vis (m)</th>
<th>Temp (&deg;C)</th>
<th>Dewp (&deg;C)</th>
<th>Turbulence</th>
</tr>
</thead>
<tbody data-bind="foreach: layerData">
<tr>
<td><input data-bind="spinner: { value: altitude }" style="width: 4em;"></td>
<td><input data-bind="spinner: { value: windDir }" style="width: 2em;"></td>
<td><input data-bind="spinner: { value: windSpeed }" style="width: 1.5em;"></td>
<td><input data-bind="spinner: { value: visibility }" style="width: 4em;"></td>
<td><input data-bind="spinner: { value: temperature }" style="width: 1.5em;"></td>
<td><input data-bind="spinner: { value: dewpoint }" style="width: 1.5em;"></td>
<td><select
data-bind="value: turbulenceValue, selectmenu: {}, options: turbulence, optionsValue: 'id', optionsText: 'text'"
style="width: 10em;"></select></td>
</tr>
</tbody>
</table>