summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2010-11-10 16:02:19 -0600
committerJoel Martin <github@martintribe.org>2010-11-10 16:02:19 -0600
commitf7ec5b2cb61b2bc25e3a8ca9f2deb8754471ccae (patch)
tree89d5881c7ec3664bae0db9cd4fc4414f70520fe9 /README.md
parente66f3f89f2df2fa5ec47870a1dca006620e1da50 (diff)
downloadwebsockify-f7ec5b2cb61b2bc25e3a8ca9f2deb8754471ccae.tar.gz
Rename default_controls.js to ui.js.
And DefaultControls to UI.
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index c1286b4..ccf51ea 100644
--- a/README.md
+++ b/README.md
@@ -142,19 +142,19 @@ There a few reasons why a proxy is required:
The client is designed to be easily integrated with existing web
structure and style.
-At a minimum you must include the `vnc.js` and `default_controls.js`
-scripts and call DefaultControls.load(). For example:
+At a minimum you must include the `vnc.js` and `ui.js` scripts and
+call UI.load(). For example:
<head>
<script src='include/vnc.js'></script>
- <script src="include/default_controls.js"></script>
+ <script src="include/ui.js"></script>
</head>
<body>
<div id='vnc'>Loading</div>
<script>
window.onload = function () {
- DefaultControls.load('vnc');
+ UI.load('vnc');
}
</script>
</body>