mirror of
				https://github.com/gyurix1968/guacamole-client.git
				synced 2025-10-31 09:03:21 +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; |         var keysym = null; | ||||||
|         if (!guac_keyboard.modifiers.shift) keysym = unshiftedKeysym[keyCode]; |         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; |         else if (keynum == 18) guac_keyboard.modifiers.alt   = true; | ||||||
|  |  | ||||||
|         // Try to get keysym from keycode |         // 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 |         // By default, we expect a corresponding keypress event | ||||||
|         var expect_keypress = true; |         var expect_keypress = true; | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user