Files
noVNC/vnc.html
T

31 lines
876 B
HTML
Raw Normal View History

2010-04-01 11:36:22 -05:00
<html>
2010-09-08 10:11:11 -05:00
<!--
noVNC example: simple example using default controls
2010-09-08 15:06:34 -05:00
Copyright (C) 2010 Joel Martin
Licensed under LGPL-3 (see LICENSE.txt)
2010-09-08 10:11:11 -05:00
-->
<head>
<title>noVNC</title>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<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>