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

@@ -4,7 +4,7 @@ class KeystrokeAction extends KeyAction {
scancode: number;
_fromJsObject(jsObject: any): KeystrokeAction {
this.assertKeyActionType(jsObject, KeyActionType.KeystrokeAction, 'KeystrokeAction');
this.assertKeyActionType(jsObject, keyActionType.KeystrokeAction, 'KeystrokeAction');
this.scancode = jsObject.scancode;
return this;
}
@@ -17,7 +17,7 @@ class KeystrokeAction extends KeyAction {
_toJsObject(): any {
return {
keyActionType: KeyActionType.KeystrokeAction,
keyActionType: keyActionType.KeystrokeAction,
scancode: this.scancode
};
}