diff options
author | BLINDAUER EMMANUEL <e.blindauer@gmail.com> | 2012-08-02 09:09:35 +0200 |
---|---|---|
committer | BLINDAUER EMMANUEL <e.blindauer@gmail.com> | 2012-08-02 09:09:35 +0200 |
commit | 50b81d4470d34fc53358eb72e2269749ee4500d3 (patch) | |
tree | 077385dec57c6f5baeb588beb6934dcb8ff54ee9 | |
parent | e5d5a7d3fd4fcf56447658462235c55a1247063f (diff) | |
download | novnc-50b81d4470d34fc53358eb72e2269749ee4500d3.tar.gz |
AltGR support (Firefox 15 currently)
-rw-r--r-- | include/input.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/input.js b/include/input.js index 9298dfe..f285182 100644 --- a/include/input.js +++ b/include/input.js @@ -83,6 +83,7 @@ function getKeysymSpecial(evt) { case 122 : keysym = 0xFFC8; break; // F11 case 123 : keysym = 0xFFC9; break; // F12 + case 225 : keysym = 0xFE03; break; // AltGr default : break; } } |