@@ -69,7 +69,7 @@ class NgModel extends NgControl implements AttachAware {
69
69
}
70
70
71
71
/**
72
- * Resets the model value to it's original (pristine) value. If the model has been interacted
72
+ * Resets the model value to its original (pristine) value. If the model has been interacted
73
73
* with by the user at all then the model will be also reset to an "untouched" state.
74
74
*/
75
75
void reset () {
@@ -266,7 +266,7 @@ class NgModel extends NgControl implements AttachAware {
266
266
* Creates a two-way databinding between the `ng-model` expression
267
267
* and the checkbox input element state.
268
268
*
269
- * Usage:
269
+ * ** Usage**
270
270
*
271
271
* <input type="checkbox"
272
272
* ng-model="expr"
@@ -326,7 +326,7 @@ class InputCheckbox {
326
326
* Creates a two-way databinding between the `ng-model` expression
327
327
* and the `<input>` or `<textarea>` string-based input elements.
328
328
*
329
- * Usage:
329
+ * ** Usage**
330
330
*
331
331
* <input type="text|url|password|email|search|tel" ng-model="myModel">
332
332
* <textarea ng-model="myModel"></textarea>
@@ -391,11 +391,11 @@ class InputTextLike {
391
391
* Creates a two-way databinding between the `ng-model` expression
392
392
* and a numeric input element.
393
393
*
394
- * Usage:
394
+ * ** Usage**
395
395
*
396
396
* <input type="number|range" ng-model="myModel">
397
397
*
398
- * Model:
398
+ * ** Model**
399
399
*
400
400
* num myModel;
401
401
*
@@ -674,7 +674,7 @@ final _uidCounter = new _UidCounter();
674
674
* When the element is selected, the `ng-model` property of that element is set to the bound value.
675
675
* Note that `expr` can be any type; i.e., it is not restricted to [String] .
676
676
*
677
- * Usage:
677
+ * ** Usage**
678
678
*
679
679
* <input type=radio ng-model=model [ng-value=expr]>
680
680
*
@@ -712,7 +712,7 @@ class NgValue {
712
712
* Assigns the value of a bound expression to the model when an input checkbox is
713
713
* checked.
714
714
*
715
- * Usage:
715
+ * ** Usage**
716
716
*
717
717
* <input type=checkbox
718
718
* ng-model=model
@@ -736,7 +736,7 @@ class NgTrueValue {
736
736
* Assigns the value of a bound expression to the model when an input checkbox is
737
737
* unchecked.
738
738
*
739
- * Usage:
739
+ * ** Usage**
740
740
*
741
741
* <input type=checkbox
742
742
* ng-model=model
@@ -758,7 +758,7 @@ class NgFalseValue {
758
758
* Creates a two-way databinding between the `ng-model` expression
759
759
* and the radio input elements in the DOM.
760
760
*
761
- * Usage:
761
+ * ** Usage**
762
762
*
763
763
* <input type="radio" name="foo" ng-model="category">
764
764
*
@@ -809,7 +809,7 @@ class InputRadio {
809
809
* Creates a two-way databinding between the expression specified in `ng-model` and the HTML element
810
810
* in the DOM.
811
811
*
812
- * Usage:
812
+ * ** Usage**
813
813
*
814
814
* <span contenteditable ng-model="name">
815
815
*
0 commit comments