#9 'Delete' action support for document nodes

This commit is contained in:
Denys Vuika
2016-05-31 11:20:25 +01:00
parent 919eb14de7
commit 0b664f1bb2
12 changed files with 53 additions and 20 deletions

View File

@@ -247,7 +247,7 @@ export class DocumentList implements OnInit, AfterViewChecked, AfterContentInit
*/
executeContentAction(node: MinimalNodeEntity, action: ContentActionModel) {
if (action) {
action.handler(node);
action.handler(node, this);
}
}