From ba972d3949f515025c1b0cfc9558e6e60c5b9893 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Wed, 18 Dec 2013 10:09:13 -0800 Subject: [PATCH] Fix typo. --- guacamole-common-js/src/main/resources/keyboard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guacamole-common-js/src/main/resources/keyboard.js b/guacamole-common-js/src/main/resources/keyboard.js index e02b33845..5e6441052 100644 --- a/guacamole-common-js/src/main/resources/keyboard.js +++ b/guacamole-common-js/src/main/resources/keyboard.js @@ -557,7 +557,7 @@ Guacamole.Keyboard = function(element) { // By default, we expect a corresponding keypress event var expect_keypress = true; - // If key is known from keycode, or this browse supports DOM3 key + // If key is known from keycode, or this browser supports DOM3 key // events, prevent default if (keysym || e.key) expect_keypress = false;