From 00b9888c05f4a720c8e594b833e6fb295181aed7 Mon Sep 17 00:00:00 2001 From: Yonatan Kra Date: Sat, 20 Feb 2016 23:58:48 +0200 Subject: [PATCH] docs(guide/Components): Clear the "require" issue It was unclear that the required controllers are available only after the `$onInit` event. --- docs/content/guide/component.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/guide/component.ngdoc b/docs/content/guide/component.ngdoc index f1a35125b79c..baf299ce6f28 100644 --- a/docs/content/guide/component.ngdoc +++ b/docs/content/guide/component.ngdoc @@ -337,7 +337,7 @@ directly into your component without creating an extra route controller: Directives can require the controllers of other directives to enable communication between each other. This can be achieved in a component by providing an -object mapping for the `require` property. Here is a tab pane example built +object mapping for the `require` property. Note that the controller will be available after the `$onInit` event! Here is a tab pane example built from components: