[no issue number] fix unsubscribing in documentlist (#2740)

* fix unsubscribing in documentlist

* fix tslint errors
This commit is contained in:
Eugenio Romano
2017-11-27 17:51:18 +00:00
committed by GitHub
parent 6843a6adfd
commit 9b7e018f93
32 changed files with 180 additions and 148 deletions

View File

@@ -19,18 +19,17 @@ import { Component } from '@angular/core';
import { LogService } from '@alfresco/adf-core';
@Component({
selector: 'alfresco-webscript',
selector: 'app-webscript',
templateUrl: 'webscript.component.html'
})
export class WebscriptComponent {
currentPath: string = '/';
authenticated: boolean;
host: string = 'http://127.0.0.1:8080';
scriptPath: string = 'sample/folder/Company%20Home';
contextRoot: string = 'alfresco';
servicePath: string = 'service';
scriptArgs: string = '';
currentPath = '/';
host = 'http://127.0.0.1:8080';
scriptPath = 'sample/folder/Company%20Home';
contextRoot = 'alfresco';
servicePath = 'service';
scriptArgs = '';
constructor(private logService: LogService) {
}