diff options
| author | Pete Bacon Darwin | 2013-09-05 13:29:21 +0100 |
|---|---|---|
| committer | Pete Bacon Darwin | 2013-09-05 13:29:21 +0100 |
| commit | 33ab26181778d057dbc2e37b9a0e476d473d2251 (patch) | |
| tree | 423f44ba247cbb29af2d2b0f15ced2a520678e15 /src/ng/directive/booleanAttrs.js | |
| parent | 230ff0576a921741ae750e173c3bce7c557259be (diff) | |
| download | angular.js-33ab26181778d057dbc2e37b9a0e476d473d2251.tar.bz2 | |
docs(booleanAttrs): improve parameter docs for boolean attributes
Diffstat (limited to 'src/ng/directive/booleanAttrs.js')
| -rw-r--r-- | src/ng/directive/booleanAttrs.js | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/src/ng/directive/booleanAttrs.js b/src/ng/directive/booleanAttrs.js index b99cc6cb..e4738a85 100644 --- a/src/ng/directive/booleanAttrs.js +++ b/src/ng/directive/booleanAttrs.js @@ -140,7 +140,8 @@ </doc:example> * * @element INPUT - * @param {expression} ngDisabled Angular expression that will be evaluated. + * @param {expression} ngDisabled If the {@link guide/expression expression} is truthy, + * then special attribute "disabled" will be set on the element. */ @@ -170,7 +171,8 @@ </doc:example> * * @element INPUT - * @param {expression} ngChecked Angular expression that will be evaluated. + * @param {expression} ngChecked If the {@link guide/expression expression} is truthy, + * then special attribute "checked" will be set on the element. */ @@ -206,7 +208,8 @@ </doc:example> * * @element SELECT - * @param {expression} ngMultiple Angular expression that will be evaluated. + * @param {expression} ngMultiple If the {@link guide/expression expression} is truthy, + * then special attribute "multiple" will be set on the element. */ @@ -236,7 +239,8 @@ </doc:example> * * @element INPUT - * @param {string} expression Angular expression that will be evaluated. + * @param {string} expression If the {@link guide/expression expression} is truthy, + * then special attribute "readonly" will be set on the element. */ @@ -269,7 +273,8 @@ </doc:example> * * @element OPTION - * @param {string} expression Angular expression that will be evaluated. + * @param {string} expression If the {@link guide/expression expression} is truthy, + * then special attribute "selected" will be set on the element. */ |
