I've got two controllers: TaskManageController and TaskFormController. The TaskFormController has function to present it (modally) and the TaskManageController has an "+" button to add. Currently the TaskManageController is a parent of the TaskFormController. How can I call present on the child controller when clicking the "+" button in the parent controller?
<div ng-controller="TaskManageController AS manage">
...
<a ng-click="manage.add()">+</a>
<div ng-controller="TaskFormController AS form">
...
</div>
</div>