CLOUDSTACK-1960: Fix for UK Keyboard - Bar symbol i.e. "|".

This commit is contained in:
Sanjay Tripathi 2013-07-03 17:05:22 +05:30 committed by Devdeep Singh
parent 2ac8f2b452
commit b5cf3510eb
1 changed files with 4 additions and 0 deletions

View File

@ -321,6 +321,10 @@ var keyboardTables = [
{keycode: 92, entry:
[{type : KEY_DOWN, code : 0xa6, modifiers : 0, shift : false}]
},
// [124 = |]
{keycode: 124, entry:
[{type : KEY_DOWN, code : 0xa6, modifiers : 64, shift : true}]
},
// [126 = ~]
{keycode: 126, entry:
[{type : KEY_DOWN, code : 0x7c, modifiers : 64, shift : true}]