diff --git a/ng2-components/ng2-alfresco-documentlist/README.md b/ng2-components/ng2-alfresco-documentlist/README.md index 6832e66586..a65a202f6a 100644 --- a/ng2-components/ng2-alfresco-documentlist/README.md +++ b/ng2-components/ng2-alfresco-documentlist/README.md @@ -45,10 +45,8 @@ Also make sure you include these dependencies in your .html page: ```html ``` @@ -69,19 +67,11 @@ import { providers: [DOCUMENT_LIST_PROVIDERS] }) export class MyView { - thumbnails: boolean = true; breadcrumb: boolean = false; navigation: boolean = true; - downloads: boolean = true; - - events: any[] = []; onItemClick($event) { console.log($event.value); - this.events.push({ - name: 'Item Clicked', - value: $event.value - }); } } ```