mirror of
https://github.com/novnc/noVNC.git
synced 2026-05-26 15:13:34 +00:00
- Add meta tag to vnc.html and vnc_auto.html so that if Chrome Frame is installed, it is used. - Add detection to default_controls.js that shows a message with a Chrome Frame install link if the user is using a version of IE without Canvas support. - Fix web.py so that requests have their connection closed after they are completed. This has been a bug for a while but it prevents Chrome Frame from working because Chrome Frame doesn't activate until the initial request connection closes.
31 lines
876 B
HTML
31 lines
876 B
HTML
<html>
|
|
<!--
|
|
noVNC example: simple example using default controls
|
|
Copyright (C) 2010 Joel Martin
|
|
Licensed under LGPL-3 (see LICENSE.txt)
|
|
-->
|
|
<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>
|
|
|
|
<script>
|
|
window.onload = function () {
|
|
DefaultControls.load('vnc');
|
|
};
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|