summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2011-09-08 09:29:05 -0500
committerJoel Martin <github@martintribe.org>2011-09-08 09:29:05 -0500
commit0911173a8985ea52e87c93da9456988668e136c7 (patch)
treece8698313a4694e2f37c7b11fe3f9b5227f38751
parent42e04907ff27daf625c2059f321e5cfbf34c72ca (diff)
downloadnovnc-0911173a8985ea52e87c93da9456988668e136c7.tar.gz
Disable static canvas logo.
-rw-r--r--include/rfb.js6
-rw-r--r--include/vnc.js1
2 files changed, 1 insertions, 6 deletions
diff --git a/include/rfb.js b/include/rfb.js
index b435b8f..928500a 100644
--- a/include/rfb.js
+++ b/include/rfb.js
@@ -7,7 +7,7 @@
*/
/*jslint white: false, browser: true, bitwise: false, plusplus: false */
-/*global window, Util, Display, Keyboard, Mouse, Websock, Websock_native, Base64, DES, noVNC_logo */
+/*global window, Util, Display, Keyboard, Mouse, Websock, Websock_native, Base64, DES */
function RFB(defaults) {
@@ -211,10 +211,6 @@ function constructor() {
rmode = display.get_render_mode();
- if (typeof noVNC_logo !== 'undefined') {
- display.set_logo(noVNC_logo);
- }
-
ws = new Websock();
ws.on('message', handle_message);
ws.on('open', function() {
diff --git a/include/vnc.js b/include/vnc.js
index 9e4cd1b..f938be7 100644
--- a/include/vnc.js
+++ b/include/vnc.js
@@ -30,7 +30,6 @@ function get_INCLUDE_URI() {
extra += start + "util.js" + end;
extra += start + "webutil.js" + end;
- extra += start + "logo.js" + end;
extra += start + "base64.js" + end;
extra += start + "websock.js" + end;
extra += start + "des.js" + end;