diff --git a/guacamole/src/main/webapp/scripts/root-ui.js b/guacamole/src/main/webapp/scripts/root-ui.js index 800ddea0a..008e8584a 100644 --- a/guacamole/src/main/webapp/scripts/root-ui.js +++ b/guacamole/src/main/webapp/scripts/root-ui.js @@ -519,3 +519,9 @@ GuacamoleRootUI.fields.username.setAttribute("autocapitalize", "off"); */ GuacamoleRootUI.reset(); + +/* + * Make sure body has an associated touch event handler such that CSS styles + * will work in browsers that require this. + */ +document.body.ontouchstart = function() {};