@@ -268,7 +268,7 @@ class NgModel extends NgControl implements AttachAware {
268
268
269
269
/**
270
270
* Creates a two-way databinding between the `ng-model` expression
271
- * and the checkbox input element state.
271
+ * and the checkbox input element state. `Selector: input[type=checkbox][ng-model]`
272
272
*
273
273
* **Usage**
274
274
*
@@ -279,21 +279,25 @@ class NgModel extends NgControl implements AttachAware {
279
279
* >
280
280
*
281
281
* If the optional `ng-true-value` is absent,
282
- * - if the model expression evaluates to true or to a nonzero [:num:] ,
282
+ *
283
+ * * if the model expression evaluates to true or to a nonzero [:num:] ,
283
284
* then the checkbox is checked
284
- * - otherwise, the checkbox is unchecked
285
+ * * otherwise, the checkbox is unchecked
285
286
*
286
287
* If `ng-true-value="t_expr"` is present,
287
- * - if the model expression evaluates to the same value as `t_expr` , then the checkbox is checked
288
- * - otherwise, it is unchecked.
288
+ *
289
+ * * if the model expression evaluates to the same value as `t_expr` , then the checkbox is checked
290
+ * * otherwise, it is unchecked.
289
291
*
290
292
* When the checkbox is checked,
291
- * - the model is set to the value of `t_expr` if present
292
- * - otherwise, the model is set to `true`
293
+ *
294
+ * * the model is set to the value of `t_expr` if present
295
+ * * otherwise, the model is set to `true`
293
296
*
294
297
* When the checkbox is unchecked,
295
- * - the model is set to the value of `f_expr` if present
296
- * - otherwise, the model is set to false.
298
+ *
299
+ * * the model is set to the value of `f_expr` if present
300
+ * * otherwise, the model is set to false.
297
301
*
298
302
* Also see [NgTrueValue] and [NgFalseValue] .
299
303
*/
@@ -393,7 +397,7 @@ class InputTextLike {
393
397
394
398
/**
395
399
* Creates a two-way databinding between the `ng-model` expression
396
- * and a numeric input element.
400
+ * and a numeric input element. `Selector:input [type=number|range][ng-model]
397
401
*
398
402
* **Usage**
399
403
*
@@ -546,15 +550,16 @@ class NgBindTypeForDateLike {
546
550
547
551
/**
548
552
* Controls the IDL attribute that reads the value of a date/time input,
549
- * to support browsers that deviate from the HTML5 standard for date/time.
553
+ * to support browsers that deviate from the HTML5 standard for date/time. `Selector:
554
+ * input[type=date|datetime|datetime-local|month|time|week][ng-model] `
550
555
*
551
556
* The [HTML5 Standard] (http://www.w3.org/TR/html5/forms.html#the-input-element) for date/time
552
- * related inputs specifies that the [ dom.InputElement.valueAsDate] and
553
- * [ dom.InputElement.valueAsNumber] IDL attributes should be available for all date/time related
554
- * input types, except for `datetime-local` which is limited to [ dom.InputElement.valueNumber] .
557
+ * related inputs specifies that the ` dom.InputElement.valueAsDate` and
558
+ * ` dom.InputElement.valueAsNumber` IDL attributes should be available for all date/time related
559
+ * input types, except for `datetime-local` which is limited to ` dom.InputElement.valueNumber` .
555
560
*
556
561
* This directive creates a two-way binding between the input and a model
557
- * property. The subordinate ' ng-bind-type' directive determines which input
562
+ * property. The subordinate ` ng-bind-type` directive determines which input
558
563
* IDL attribute is read (see [NgBindTypeForDateLike] for details) and
559
564
* hence the type of the read values.
560
565
*
@@ -760,7 +765,7 @@ class NgFalseValue {
760
765
761
766
/**
762
767
* Creates a two-way databinding between the `ng-model` expression
763
- * and the radio input elements in the DOM.
768
+ * and the radio input elements in the DOM. `Selector: input[type=radio][ng-model]`
764
769
*
765
770
* **Usage**
766
771
*
@@ -811,7 +816,7 @@ class InputRadio {
811
816
812
817
/**
813
818
* Creates a two-way databinding between the expression specified in `ng-model` and the HTML element
814
- * in the DOM.
819
+ * in the DOM. `Selector: [contenteditable][ng-model]`
815
820
*
816
821
* **Usage**
817
822
*
0 commit comments