Files
noVNC/vnc.html
T

28 lines
727 B
HTML
Raw Normal View History

<!--
noVNC example: simple example using default controls
-->
2010-04-01 11:36:22 -05:00
<html>
<head>
<title>VNC Client</title>
<link rel="stylesheet" href="include/plain.css">
<link rel="alternate stylesheet" href="include/black.css" TITLE="Black">
<!--
<script type='text/javascript'
src='http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js'></script>
-->
<script src="include/vnc.js"></script>
<script src="include/default_controls.js"></script>
</head>
<body>
<div id='vnc'>Loading</div>
2010-04-01 11:36:22 -05:00
2010-08-02 17:07:27 -05:00
<script>
window.onload = function () {
DefaultControls.load('vnc');
2010-08-02 17:07:27 -05:00
};
</script>
</body>
2010-04-01 11:36:22 -05:00
</html>