From 4efc08e8efd1c52d21d9a236302fbe852aff1c1d Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Wed, 28 Nov 2012 22:13:51 -0800 Subject: [PATCH] Modify for consistency. --- 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 5a472cdcd..e42317e99 100644 --- a/guacamole-common-js/src/main/resources/keyboard.js +++ b/guacamole-common-js/src/main/resources/keyboard.js @@ -354,7 +354,7 @@ Guacamole.Keyboard = function(element) { // Repeat after a delay as long as pressed if (!no_repeat[keysym]) - key_repeat_timeout = setTimeout(function() { + key_repeat_timeout = window.setTimeout(function() { key_repeat_interval = window.setInterval(function() { guac_keyboard.onkeyup(keysym); guac_keyboard.onkeydown(keysym);