#384 Change API name, add docs, fix demo

This commit is contained in:
mauriziovitale84
2016-12-07 10:46:22 +00:00
parent 5fa2a8d075
commit 369ac0d7d6
4 changed files with 7 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
<alfresco-document-menu-action *ngIf="contentMenuActions"
<alfresco-document-menu-action *ngIf="creationMenuActions"
[currentFolderPath]="currentFolderPath"
(onSuccess)="onActionMenuSuccess($event)"
(onError)="onActionMenuError($event)">

View File

@@ -87,10 +87,10 @@ export class DocumentList implements OnInit, AfterContentInit {
contentActions: boolean = false;
@Input()
contentMenuActions: boolean = true;
contextMenuActions: boolean = false;
@Input()
contextMenuActions: boolean = false;
creationMenuActions: boolean = true;
@Input()
pageSize: number = DocumentList.DEFAULT_PAGE_SIZE;