Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Improved parameter documentation for several boolean attribute directives #3724

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions src/ng/directive/booleanAttrs.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/


Expand Down Expand Up @@ -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
*/


Expand Down Expand Up @@ -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
*/


Expand Down Expand Up @@ -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
*/

/**
Expand Down Expand Up @@ -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 = {};
Expand Down