aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content
diff options
context:
space:
mode:
authortomazy2013-08-27 14:19:26 +0800
committerVojta Jina2013-08-29 11:40:56 -0700
commitd9dbc6a844f4e3dd85d22563863472934c0652a2 (patch)
tree6f5acc5e5a503db26a373d8529bef964a94038fb /docs/content
parentd6fdd31fdc70e74a22e357220729869d5611e67f (diff)
downloadangular.js-d9dbc6a844f4e3dd85d22563863472934c0652a2.tar.bz2
docs(guide): remove duplicated `require` section
Diffstat (limited to 'docs/content')
-rw-r--r--docs/content/guide/directive.ngdoc4
1 files changed, 0 insertions, 4 deletions
diff --git a/docs/content/guide/directive.ngdoc b/docs/content/guide/directive.ngdoc
index ea1c9ced..9126b695 100644
--- a/docs/content/guide/directive.ngdoc
+++ b/docs/content/guide/directive.ngdoc
@@ -404,10 +404,6 @@ compiler}. The attributes are:
* `controllerAs` - Controller alias at the directive scope. An alias for the controller so it
can be referenced at the directive template. The directive needs to define a scope for this
configuration to be used. Useful in the case when directive is used as component.
-
- * `require` - Require another controller be passed into current directive linking function. The
- `require` takes a name of the directive controller to pass in. If no such controller can be
- found an error is raised. The name can be prefixed with:
* `restrict` - String of subset of `EACM` which restricts the directive to a specific directive
declaration style. If omitted, the default (attributes only) is used.