Make test-serializer.ts serialize and deserialize the configuration.

This commit is contained in:
László Monda
2016-04-01 18:15:04 +02:00
parent 3840d0a623
commit d775a3db3c
5 changed files with 7 additions and 10 deletions

View File

@@ -20,7 +20,7 @@ class KeyActions implements Serializable<KeyActions> {
toJsObject(): any {
let array = [];
for (let keyAction of this.keyActions) {
keyAction.toJsObject();
array.push(keyAction.toJsObject());
}
return array;
}