13bc47389b
Fixed bug where the values of numbers without min/max ranges were not updated correctly. Fixed bug where elements with 'order' attribute were not ordered correctly when created. Signed-off-by: kevin <kevin@larke.org>
25 lines
557 B
HTML
25 lines
557 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Preset Selection App</title>
|
|
<script type="text/javascript" src="js/ui.js"></script>
|
|
<link href="css/ui.css" rel="stylesheet">
|
|
<link href="css/preset_sel.css" rel="stylesheet">
|
|
|
|
<script text="text/javascript">
|
|
window.addEventListener("load",main, false )
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<div id="appTitleDiv" class="uiRow">
|
|
<p id="appTitleId">Preset Selection:</p>
|
|
<p id="connectTitleId">Disconnected</p>
|
|
</div>
|
|
|
|
|
|
</body>
|
|
</html>
|