[ACA-1347] Setup code linting and production builds with CI (#339)

This commit is contained in:
Denys Vuika
2018-04-30 11:51:27 +01:00
committed by GitHub
parent 46a5339214
commit 25c5738160
33 changed files with 176 additions and 78 deletions

View File

@@ -32,13 +32,14 @@ import { Observable } from 'rxjs/Rx';
import { ContentManagementService } from '../services/content-management.service';
@Directive({
selector: '[app-delete-node]'
selector: '[acaDeleteNode]'
})
export class NodeDeleteDirective {
static RESTORE_MESSAGE_DURATION: number = 3000;
static DELETE_MESSAGE_DURATION: number = 10000;
static RESTORE_MESSAGE_DURATION = 3000;
static DELETE_MESSAGE_DURATION = 10000;
@Input('app-delete-node')
// tslint:disable-next-line:no-input-rename
@Input('acaDeleteNode')
selection: MinimalNodeEntity[];
@HostListener('click')