Webscript disable show data parameter #515

This commit is contained in:
Eugenio Romano
2016-08-03 21:30:14 +01:00
parent e17604e47d
commit 60dde117d7
4 changed files with 60 additions and 89 deletions

View File

@@ -63,7 +63,7 @@ class WebscriptDemo implements OnInit {
authenticated: boolean;
ecmHost: string = 'http://127.0.0.1:8080';
ecmHost: string = 'http://127.0.0.1:8080';
scriptPath: string = 'sample/folder/Company%20Home';
@@ -78,7 +78,7 @@ class WebscriptDemo implements OnInit {
constructor(private authService: AlfrescoAuthenticationService,
private alfrescoSettingsService: AlfrescoSettingsService) {
alfrescoSettingsService.ecmHost = this.ecmHost;
alfrescoSettingsService.ecmHost = this.ecmHost;
if (this.authService.getTicket()) {
this.token = this.authService.getTicket();
}
@@ -89,7 +89,7 @@ class WebscriptDemo implements OnInit {
}
public updateHost(): void {
this.alfrescoSettingsService.ecmHost = this.ecmHost;
this.alfrescoSettingsService.ecmHost = this.ecmHost;
this.login();
}