From 2cb73b71d1e9ed16b9b2e68f8b8a6dcb1d4ac862 Mon Sep 17 00:00:00 2001 From: Jens Rantil Date: Mon, 20 May 2013 18:31:39 +0200 Subject: doc($compile): clarify compile function return value If a compile function (within a directive) returns a function, it is a post-link function. Closes: #2713 --- docs/content/guide/directive.ngdoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/content/guide') diff --git a/docs/content/guide/directive.ngdoc b/docs/content/guide/directive.ngdoc index 176d6c62..def291f8 100644 --- a/docs/content/guide/directive.ngdoc +++ b/docs/content/guide/directive.ngdoc @@ -445,8 +445,8 @@ done in a linking function rather than in a compile function. A compile function can have a return value which can be either a function or an object. -* returning a function - is equivalent to registering the linking function via the `link` property - of the config object when the compile function is empty. +* returning a (post-link) function - is equivalent to registering the linking function via the + `link` property of the config object when the compile function is empty. * returning an object with function(s) registered via `pre` and `post` properties - allows you to control when a linking function should be called during the linking phase. See info about -- cgit v1.2.3