Rename default_controls.js to ui.js.

And DefaultControls to UI.
This commit is contained in:
Joel Martin
2010-11-10 16:02:19 -06:00
parent e66f3f89f2
commit f7ec5b2cb6
3 changed files with 92 additions and 94 deletions

View File

@@ -1,6 +1,6 @@
<html>
<!--
noVNC example: simple example using default controls
noVNC example: simple example using default UI
Copyright (C) 2010 Joel Martin
Licensed under LGPL-3 (see LICENSE.txt)
-->
@@ -14,7 +14,7 @@
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>
<script src="include/ui.js"></script>
</head>
<body>
@@ -22,7 +22,7 @@
<script>
window.onload = function () {
DefaultControls.load('vnc');
UI.load('vnc');
};
</script>