This repository was archived by the owner on Feb 22, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
part of angular.directive;
2
2
3
3
/**
4
- * NgModelConverter is the class interface for performing transformations on
5
- * the viewValue and modelValue properties on a model. A new converter can be created
6
- * by implementing the NgModelConverter class and then attaching to a model via the
7
- * provided setter.
4
+ * Class interface for performing transformations on the viewValue and modelValue properties on a model.
5
+ *
6
+ * A new converter can be created by implementing the NgModelConverter class and then attaching to
7
+ * a model via the provided setter.
8
8
*/
9
9
abstract class NgModelConverter {
10
10
String get name;
@@ -18,6 +18,7 @@ class _NoopModelConverter extends NgModelConverter {
18
18
19
19
/**
20
20
* Ng-model directive is responsible for reading/writing to the model.
21
+ *
21
22
* The directive itself is headless. (It does not know how to render or what
22
23
* events to listen for.) It is meant to be used with other directives which
23
24
* provide the rendering and listening capabilities. The directive itself
You can’t perform that action at this time.
0 commit comments