From c62e7c7b4bde73027ad01a391695c2f7165d0295 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Thu, 16 Oct 2014 22:38:29 -0700 Subject: [PATCH] GUAC-823: Cursors must end with a cursor keyword (see https://developer.mozilla.org/en-US/docs/Web/CSS/cursor/url). --- guacamole-common-js/src/main/webapp/modules/Mouse.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guacamole-common-js/src/main/webapp/modules/Mouse.js b/guacamole-common-js/src/main/webapp/modules/Mouse.js index 3cd0b8a48..a27eae7ab 100644 --- a/guacamole-common-js/src/main/webapp/modules/Mouse.js +++ b/guacamole-common-js/src/main/webapp/modules/Mouse.js @@ -333,7 +333,7 @@ Guacamole.Mouse = function(element) { // Attempt to set via CSS3 cursor styling if (CSS3_CURSOR_SUPPORTED) { var dataURL = canvas.toDataURL('image/png'); - element.style.cursor = "url(" + dataURL + ") " + x + " " + y; + element.style.cursor = "url(" + dataURL + ") " + x + " " + y + ", auto"; return true; }