Files
websockify/vnc.html
T
Antoine Mercadal ed5573e806 * Use zoom if present to avoid layout problem with scale
* Create a init.js file that does initialization if wanted (with Cappuccino we do not want to)
* Update the demo files
2010-07-21 18:32:50 +02:00

29 lines
803 B
HTML

<!--
noVNC example: simple example using default controls
-->
<html>
<head>
<title>VNC Client</title>
<link rel="stylesheet" href="include/plain.css" TITLE="plain">
<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/init.js"></script>
<script src="include/vnc.js"></script>
<script src="include/default_controls.js"></script>
</head>
<body>
<div id='vnc'>Loading</div>
</body>
<script>
window.onload = function () {
DefaultControls.load('vnc');
RFB.load();
}
</script>
</html>