1
0
Fork 0
fgdata/webgui/instruments/kingradio.html
Torsten Dreyer e46764624d Move the web gui to its own folder
serve FGDATA/webgui as url /gui/ and move the files
out of FGDATA/Docs (which was a bad place for those).
2014-03-14 21:15:51 +01:00

52 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>FlightGear - Radio Stack</title>
<meta charset="UTF-8" />
<meta name="description" content="FlightGear - Radio Stack" />
<link href="kx165.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div id="wrapper">
<div id="comnav1"></div>
<div style="clear: both"></div>
<div id="comnav2"></div>
<div style="clear: both"></div>
<div id="dme"></div>
<div style="clear: both"></div>
<div id="kr87"></div>
<div style="clear: both"></div>
</div>
<!--script src="jquery-1.11.0.js"></script-->
<script src="http://code.jquery.com/jquery-1.11.0.js"
type="text/javascript"></script>
<script src="../lib/fgcommand.js" type="text/javascript"></script>
<script src="../lib/props.js" type="text/javascript"></script>
<script src="kx165.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
PropertyChangeListener(function() {
// load kx165.html, select the element with class .kx165
// and fill the element with id kx165-1 in above html
$('#comnav1').load("kx165.html .kx165", function() {
KX165.bind(0, this);
});
$('#comnav2').load("kx165.html .kx165", function() {
KX165.bind(1, this);
});
//$('#dme').load("kn62.html .kn62", function() {
// KX165.bind(1, this);
//});
});
});
</script>
</body>
</html>