Browse Source

Handle Super and Menu keys (Windows keys)

Blindauer Emmanuel 13 years ago
parent
commit
c76b2a8101
1 changed files with 3 additions and 0 deletions
  1. 3 0
      include/input.js

+ 3 - 0
include/input.js

@@ -84,6 +84,9 @@ function getKeysymSpecial(evt) {
             case 123       : keysym = 0xFFC9; break; // F12
 
             case 225       : keysym = 0xFE03; break; // AltGr
+            case 91       : keysym = 0xFFEC; break; // Super_R (Win Key)
+            case 93       : keysym = 0xFF67; break; // Menu (Win Menu)
+
             default        :                  break;
         }
     }