Fix typo in variable name.

This commit is contained in:
Michael Jumper
2013-01-09 15:18:35 -08:00
parent 0b88c48038
commit b707156327

View File

@@ -318,7 +318,7 @@ Guacamole.Keyboard = function(element) {
}
function keysyom_from_keycode(keyCode) {
function keysym_from_keycode(keyCode) {
var keysym = null;
if (!guac_keyboard.modifiers.shift) keysym = unshiftedKeysym[keyCode];
@@ -437,7 +437,7 @@ Guacamole.Keyboard = function(element) {
else if (keynum == 18) guac_keyboard.modifiers.alt = true;
// Try to get keysym from keycode
var keysym = keysyom_from_keycode(keynum);
var keysym = keysym_from_keycode(keynum);
// By default, we expect a corresponding keypress event
var expect_keypress = true;