Code cleanup and fixes

This commit is contained in:
Denys Vuika
2016-07-05 16:19:39 +01:00
parent e414135bd2
commit 21c1cbc531
24 changed files with 177 additions and 582 deletions

View File

@@ -19,7 +19,6 @@ export class ContentActionModel {
icon: string;
title: string;
handler: ContentActionHandler;
type: string;
target: string;
constructor(obj?: any) {
@@ -27,7 +26,6 @@ export class ContentActionModel {
this.icon = obj.icon;
this.title = obj.title;
this.handler = obj.handler;
this.type = obj.type;
this.target = obj.target;
}
}