From c1e5822a19b3afd9c79afbfa6afa251817ff8fb4 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Mon, 13 Oct 2014 14:18:57 -0700 Subject: [PATCH] GUAC-872: Fix keysym definition for PageUp/PageDown key identifiers. --- guacamole-common-js/src/main/webapp/modules/Keyboard.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guacamole-common-js/src/main/webapp/modules/Keyboard.js b/guacamole-common-js/src/main/webapp/modules/Keyboard.js index 5c63f336d..163aef0cc 100644 --- a/guacamole-common-js/src/main/webapp/modules/Keyboard.js +++ b/guacamole-common-js/src/main/webapp/modules/Keyboard.js @@ -467,8 +467,8 @@ Guacamole.Keyboard = function(element) { "Meta": [0xFFE7, 0xFFE7, 0xFFE8], "ModeChange": [0xFF7E], "NumLock": [0xFF7F], - "PageDown": [0xFF55], - "PageUp": [0xFF56], + "PageDown": [0xFF56], + "PageUp": [0xFF55], "Pause": [0xFF13], "Play": [0xFD16], "PreviousCandidate": [0xFF3E],