Repository: guacamole-client Updated Branches: refs/heads/master b5361a588 -> c4ba495cc
GUACAMOLE-447: Add UIKit key constants sometimes (incorrectly) used by iOS Safari. Project: http://git-wip-us.apache.org/repos/asf/guacamole-client/repo Commit: http://git-wip-us.apache.org/repos/asf/guacamole-client/commit/5ed1586f Tree: http://git-wip-us.apache.org/repos/asf/guacamole-client/tree/5ed1586f Diff: http://git-wip-us.apache.org/repos/asf/guacamole-client/diff/5ed1586f Branch: refs/heads/master Commit: 5ed1586f5019516be4ec4ad9bf990dc33c805e39 Parents: 00d464b Author: Michael Jumper <[email protected]> Authored: Tue Nov 28 00:12:19 2017 -0800 Committer: Michael Jumper <[email protected]> Committed: Fri Jan 5 11:01:15 2018 -0800 ---------------------------------------------------------------------- guacamole-common-js/src/main/webapp/modules/Keyboard.js | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/guacamole-client/blob/5ed1586f/guacamole-common-js/src/main/webapp/modules/Keyboard.js ---------------------------------------------------------------------- diff --git a/guacamole-common-js/src/main/webapp/modules/Keyboard.js b/guacamole-common-js/src/main/webapp/modules/Keyboard.js index 43d8465..876c88a 100644 --- a/guacamole-common-js/src/main/webapp/modules/Keyboard.js +++ b/guacamole-common-js/src/main/webapp/modules/Keyboard.js @@ -498,6 +498,11 @@ Guacamole.Keyboard = function(element) { "SingleCandidate": [0xFF3C], "Super": [0xFFEB, 0xFFEB, 0xFFEC], "Tab": [0xFF09], + "UIKeyInputDownArrow": [0xFF54], + "UIKeyInputEscape": [0xFF1B], + "UIKeyInputLeftArrow": [0xFF51], + "UIKeyInputRightArrow": [0xFF53], + "UIKeyInputUpArrow": [0xFF52], "Up": [0xFF52], "Undo": [0xFF65], "Win": [0xFFEB],
