Forgot to rename KeyActionType to keyActionType which I done now.

This commit is contained in:
László Monda
2016-04-08 23:41:47 +02:00
parent 7d17cba390
commit a3b83dfb36
9 changed files with 25 additions and 25 deletions

View File

@@ -8,7 +8,7 @@ class KeystrokeWithModifiersAction extends KeyAction {
_fromJsObject(jsObject: any): KeystrokeWithModifiersAction {
this.assertKeyActionType(
jsObject, KeyActionType.KeystrokeWithModifiersAction, 'KeystrokeWithModifiersAction');
jsObject, keyActionType.KeystrokeWithModifiersAction, 'KeystrokeWithModifiersAction');
this.scancode = jsObject.scancode;
this.modifierMask = jsObject.modifierMask;
return this;
@@ -23,7 +23,7 @@ class KeystrokeWithModifiersAction extends KeyAction {
_toJsObject(): any {
return {
keyActionType: KeyActionType.KeystrokeWithModifiersAction,
keyActionType: keyActionType.KeystrokeWithModifiersAction,
scancode: this.scancode,
modifierMask: this.modifierMask
};