Commit 455e4657 authored by Joel Martin's avatar Joel Martin

default_controls.js: canvas fail fix. Misc cleanup.

- Make sure that canvas exists (i.e. didn't throw an error) before
  trying to call canvas method get_canvas_uri.

- Typos in HTML render engine debug output.
parent 3205a3de
...@@ -16,7 +16,7 @@ conf = conf || {}; // Configuration ...@@ -16,7 +16,7 @@ conf = conf || {}; // Configuration
var that = {}, // Public API interface var that = {}, // Public API interface
// Private Canvas namespace variables // Private Canvas namespace variables
c_forceCanvas = false, c_forceCanvas = false,
c_width = 0, c_width = 0,
c_height = 0, c_height = 0,
...@@ -109,8 +109,8 @@ function constructor() { ...@@ -109,8 +109,8 @@ function constructor() {
if (UE.gecko) { Util.Debug("Browser: gecko " + UE.gecko); } if (UE.gecko) { Util.Debug("Browser: gecko " + UE.gecko); }
if (UE.webkit) { Util.Debug("Browser: webkit " + UE.webkit); } if (UE.webkit) { Util.Debug("Browser: webkit " + UE.webkit); }
if (UE.trident) { Util.Debug("Browser: webkit " + UE.trident); } if (UE.trident) { Util.Debug("Browser: trident " + UE.trident); }
if (UE.presto) { Util.Debug("Browser: webkit " + UE.presto); } if (UE.presto) { Util.Debug("Browser: presto " + UE.presto); }
that.clear(); that.clear();
......
...@@ -247,7 +247,7 @@ settingsDisabled: function(disabled, rfb) { ...@@ -247,7 +247,7 @@ settingsDisabled: function(disabled, rfb) {
//Util.Debug(">> settingsDisabled"); //Util.Debug(">> settingsDisabled");
$('VNC_encrypt').disabled = disabled; $('VNC_encrypt').disabled = disabled;
$('VNC_true_color').disabled = disabled; $('VNC_true_color').disabled = disabled;
if (rfb && rfb.get_canvas().get_cursor_uri()) { if (rfb && rfb.get_canvas() && rfb.get_canvas().get_cursor_uri()) {
$('VNC_cursor').disabled = disabled; $('VNC_cursor').disabled = disabled;
} else { } else {
DefaultControls.updateSetting('cursor', false); DefaultControls.updateSetting('cursor', false);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment