diff --git a/guacamole-common-js/src/main/resources/guacamole.js b/guacamole-common-js/src/main/resources/guacamole.js index 3881c154f..a9fcbed40 100644 --- a/guacamole-common-js/src/main/resources/guacamole.js +++ b/guacamole-common-js/src/main/resources/guacamole.js @@ -123,18 +123,10 @@ Guacamole.Client = function(tunnel) { var cursorHotspotX = 0; var cursorHotspotY = 0; - var cursorHidden = 0; - function moveCursor(x, y) { var element = cursor.getElement(); - // Hide hardware cursor - if (cursorHidden == 0) { - display.className += " guac-hide-cursor"; - cursorHidden = 1; - } - // Update rect element.style.left = (x - cursorHotspotX) + "px"; element.style.top = (y - cursorHotspotY) + "px";