mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2024-11-26 18:13:16 +01:00
46b7d1db95
Remove the styling, as it isn't really needed, and fix some minor things that the w3c validator complains about.
44 lines
1.4 KiB
HTML
44 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>VNC Playback</title>
|
|
<!-- promise polyfills promises for IE11 -->
|
|
<script src="../vendor/promise.js"></script>
|
|
<!-- ES2015/ES6 modules polyfill -->
|
|
<script type="module">
|
|
window._noVNC_has_module_support = true;
|
|
</script>
|
|
<script>
|
|
window.addEventListener("load", function() {
|
|
if (window._noVNC_has_module_support) return;
|
|
var loader = document.createElement("script");
|
|
loader.src = "../vendor/browser-es-module-loader/dist/browser-es-module-loader.js";
|
|
document.head.appendChild(loader);
|
|
});
|
|
</script>
|
|
<!-- actual script modules -->
|
|
<script type="module" src="./playback-ui.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
Iterations: <input id='iterations'>
|
|
Perftest:<input type='radio' id='mode1' name='mode' checked>
|
|
Realtime:<input type='radio' id='mode2' name='mode'>
|
|
|
|
<input id='startButton' type='button' value='Start' disabled>
|
|
|
|
<br><br>
|
|
|
|
Results:<br>
|
|
<textarea id="messages" cols=80 rows=25></textarea>
|
|
|
|
<br><br>
|
|
|
|
<div id="VNC_screen">
|
|
<div id="VNC_status">Loading</div>
|
|
</div>
|
|
|
|
<script type="module" src="./playback-ui.js"></script>
|
|
</body>
|
|
</html>
|