From a261bd2305bb1f5e6ccbe4d9260da0a16a8ccfe4 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Thu, 8 Nov 2012 10:30:02 -0800 Subject: [PATCH] Key state object should be object, not Array. --- 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 8c08f39c5..fce0c46c8 100644 --- a/guacamole-common-js/src/main/resources/keyboard.js +++ b/guacamole-common-js/src/main/resources/keyboard.js @@ -241,7 +241,7 @@ Guacamole.Keyboard = function(element) { * is not currently pressed, the value for that keysym may be false or * undefined. */ - this.pressed = []; + this.pressed = {}; var keydownChar = new Array();