From 33ab26181778d057dbc2e37b9a0e476d473d2251 Mon Sep 17 00:00:00 2001 From: Pete Bacon Darwin Date: Thu, 5 Sep 2013 13:29:21 +0100 Subject: docs(booleanAttrs): improve parameter docs for boolean attributes --- src/ng/directive/booleanAttrs.js | 15 ++++++++++----- 1 file 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 @@ * * @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 @@ * * @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 @@ * * @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 @@ * * @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 @@ * * @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. */ -- cgit v1.2.3