mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 05:07:41 +00:00
Fix typo in variable name.
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user