upload event in the demo

This commit is contained in:
Mario Romano
2016-05-20 18:25:27 +01:00
parent 429f082eb7
commit 5c8e37073f
3 changed files with 20 additions and 10 deletions

View File

@@ -116,8 +116,9 @@ export class MyDemoApp {
constructor(alfrescoSettingsService: AlfrescoSettingsService) {
alfrescoSettingsService.host = 'http://myalfrescoip';
}
customMethod(event: Object) {
console.log('File uploaded');
public customMethod(event: Object): void {
console.log('File uploaded');
}
}
@@ -172,8 +173,9 @@ export class MyDemoApp {
constructor(alfrescoSettingsService: AlfrescoSettingsService) {
alfrescoSettingsService.host = 'http://myalfrescoip';
}
customMethod(event: Object) {
console.log('File uploaded');
public customMethod(event: Object): void {
console.log('File uploaded');
}
}