Merge pull request #1 from cblgh/master

patch colon not working on swedish (+ others?) kb layout
This commit is contained in:
Лu Лinveгa
2016-11-17 10:17:51 -08:00
committed by GitHub

View File

@@ -46,6 +46,7 @@ function Keyboard()
case 37: this.key_arrow_left(); break; case 37: this.key_arrow_left(); break;
case 39: this.key_arrow_right(); break; case 39: this.key_arrow_right(); break;
case 186: this.key_colon(); break; case 186: this.key_colon(); break;
case 190: if (event.shiftKey) this.key_colon(); break;
case 27: this.key_escape(); break; case 27: this.key_escape(); break;
} }