Skip to content

Commit 5893213

Browse files
mark0978jamesdaily
authored andcommitted
docs(booleanAttrs): add @priority to all the boolean directives
Closes angular#5361
1 parent ef7cdf9 commit 5893213

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

src/ng/directive/booleanAttrs.js

+9-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* @ngdoc directive
55
* @name ng.directive:ngHref
66
* @restrict A
7+
* @priority 99
78
*
89
* @description
910
* Using Angular markup like `{{hash}}` in an href attribute will
@@ -87,6 +88,7 @@
8788
* @ngdoc directive
8889
* @name ng.directive:ngSrc
8990
* @restrict A
91+
* @priority 99
9092
*
9193
* @description
9294
* Using Angular markup like `{{hash}}` in a `src` attribute doesn't
@@ -112,6 +114,7 @@
112114
* @ngdoc directive
113115
* @name ng.directive:ngSrcset
114116
* @restrict A
117+
* @priority 99
115118
*
116119
* @description
117120
* Using Angular markup like `{{hash}}` in a `srcset` attribute doesn't
@@ -137,6 +140,7 @@
137140
* @ngdoc directive
138141
* @name ng.directive:ngDisabled
139142
* @restrict A
143+
* @priority 100
140144
*
141145
* @description
142146
*
@@ -180,6 +184,7 @@
180184
* @ngdoc directive
181185
* @name ng.directive:ngChecked
182186
* @restrict A
187+
* @priority 100
183188
*
184189
* @description
185190
* The HTML specification does not require browsers to preserve the values of boolean attributes
@@ -214,6 +219,7 @@
214219
* @ngdoc directive
215220
* @name ng.directive:ngReadonly
216221
* @restrict A
222+
* @priority 100
217223
*
218224
* @description
219225
* The HTML specification does not require browsers to preserve the values of boolean attributes
@@ -223,7 +229,6 @@
223229
* The `ngReadonly` directive solves this problem for the `readonly` attribute.
224230
* This complementary directive is not removed by the browser and so provides
225231
* a permanent reliable place to store the binding information.
226-
227232
* @example
228233
<doc:example>
229234
<doc:source>
@@ -249,6 +254,7 @@
249254
* @ngdoc directive
250255
* @name ng.directive:ngSelected
251256
* @restrict A
257+
* @priority 100
252258
*
253259
* @description
254260
* The HTML specification does not require browsers to preserve the values of boolean attributes
@@ -258,6 +264,7 @@
258264
* The `ngSelected` directive solves this problem for the `selected` atttribute.
259265
* This complementary directive is not removed by the browser and so provides
260266
* a permanent reliable place to store the binding information.
267+
*
261268
* @example
262269
<doc:example>
263270
<doc:source>
@@ -285,6 +292,7 @@
285292
* @ngdoc directive
286293
* @name ng.directive:ngOpen
287294
* @restrict A
295+
* @priority 100
288296
*
289297
* @description
290298
* The HTML specification does not require browsers to preserve the values of boolean attributes
@@ -294,8 +302,6 @@
294302
* The `ngOpen` directive solves this problem for the `open` attribute.
295303
* This complementary directive is not removed by the browser and so provides
296304
* a permanent reliable place to store the binding information.
297-
298-
*
299305
* @example
300306
<doc:example>
301307
<doc:source>

0 commit comments

Comments
 (0)