diff --git a/guacamole-common-js/src/main/webapp/modules/Keyboard.js b/guacamole-common-js/src/main/webapp/modules/Keyboard.js index abf71accd..7ca539e6e 100644 --- a/guacamole-common-js/src/main/webapp/modules/Keyboard.js +++ b/guacamole-common-js/src/main/webapp/modules/Keyboard.js @@ -401,7 +401,7 @@ Guacamole.Keyboard = function(element) { } } - return false; + return true; } @@ -492,7 +492,7 @@ Guacamole.Keyboard = function(element) { var location = e.location || e.keyLocation || 0; // Ignore any unknown key events - if (!keynum && !identifier) { + if (!keynum) { e.preventDefault(); return; }