diff options
| author | James Daily | 2013-09-05 13:16:16 +0100 | 
|---|---|---|
| committer | Pete Bacon Darwin | 2013-09-05 13:16:40 +0100 | 
| commit | ae70ec7946a75fc1760158f954b27fb59342d568 (patch) | |
| tree | 2186a1713af21b9ce3a9f541df5e2d8158c65e15 /src/ng/directive/booleanAttrs.js | |
| parent | 62ea5c3a9149a066364692b653f0560c70e00074 (diff) | |
| download | angular.js-ae70ec7946a75fc1760158f954b27fb59342d568.tar.bz2 | |
docs(booleanAttrs): improve parameter docs for boolean attributes
Closes #3724
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 a0966da7..ad7b4f3f 100644 --- a/src/ng/directive/booleanAttrs.js +++ b/src/ng/directive/booleanAttrs.js @@ -165,7 +165,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   */ @@ -195,7 +196,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   */ @@ -225,7 +227,8 @@      </doc:example>   *   * @element INPUT - * @param {string} expression Angular expression that will be evaluated. + * @param {expression} ngReadonly If the {@link guide/expression expression} is truthy,  + *     then special attribute "readonly" will be set on the element   */ @@ -258,7 +261,8 @@      </doc:example>   *   * @element OPTION - * @param {string} expression Angular expression that will be evaluated. + * @param {expression} ngSelected If the {@link guide/expression expression} is truthy,  + *     then special attribute "selected" will be set on the element   */  /** @@ -290,7 +294,8 @@       </doc:example>   *   * @element DETAILS - * @param {string} expression Angular expression that will be evaluated. + * @param {expression} ngOpen If the {@link guide/expression expression} is truthy,  + *     then special attribute "open" will be set on the element   */  var ngAttributeAliasDirectives = {}; | 
