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

@@ -5,7 +5,7 @@ class KeystrokeModifiersAction extends KeyAction {
_fromJsObject(jsObject: any): KeystrokeModifiersAction {
this.assertKeyActionType(
jsObject, KeyActionType.KeystrokeModifiersAction, 'KeystrokeModifiersAction');
jsObject, keyActionType.KeystrokeModifiersAction, 'KeystrokeModifiersAction');
this.modifierMask = jsObject.modifierMask;
return this;
}
@@ -18,7 +18,7 @@ class KeystrokeModifiersAction extends KeyAction {
_toJsObject(): any {
return {
keyActionType: KeyActionType.KeystrokeModifiersAction,
keyActionType: keyActionType.KeystrokeModifiersAction,
modifierMask: this.modifierMask
};
}