aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVojta Jina2012-03-13 13:52:57 -0700
committerVojta Jina2012-03-13 13:52:57 -0700
commit63be222326f3badbb76371f82d49fed5ab9e3e65 (patch)
treedec4d6f0e8fb72d8226f5a40cb4783b8e3787313 /src
parenta29c2cf70cb19f9fb4be2b62e7acd4054751ac51 (diff)
downloadangular.js-63be222326f3badbb76371f82d49fed5ab9e3e65.tar.bz2
docs(input): Fix some broken links, add missing $, use ng- in examples
Diffstat (limited to 'src')
-rw-r--r--src/directive/input.js18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/directive/input.js b/src/directive/input.js
index 10d55518..1ed1442f 100644
--- a/src/directive/input.js
+++ b/src/directive/input.js
@@ -724,20 +724,20 @@ var inputDirective = [function() {
* @ngdoc object
* @name angular.module.ng.$compileProvider.directive.ng-model.NgModelController
*
- * @property {string} viewValue Actual string value in the view.
- * @property {*} modelValue The value in the model, that the control is bound to.
- * @property {Array.<Function>} parsers Whenever the control reads value from the DOM, it executes
+ * @property {string} $viewValue Actual string value in the view.
+ * @property {*} $modelValue The value in the model, that the control is bound to.
+ * @property {Array.<Function>} $parsers Whenever the control reads value from the DOM, it executes
* all of these functions to sanitize / convert the value as well as validate.
*
- * @property {Array.<Function>} formatters Whenever the model value changes, it executes all of
+ * @property {Array.<Function>} $formatters Whenever the model value changes, it executes all of
* these functions to convert the value as well as validate.
*
- * @property {Object} error An bject hash with all errors as keys.
+ * @property {Object} $error An bject hash with all errors as keys.
*
- * @property {boolean} pristine True if user has not interacted with the control yet.
- * @property {boolean} dirty True if user has already interacted with the control.
- * @property {boolean} valid True if there is no error.
- * @property {boolean} invalid True if at least one error on the control.
+ * @property {boolean} $pristine True if user has not interacted with the control yet.
+ * @property {boolean} $dirty True if user has already interacted with the control.
+ * @property {boolean} $valid True if there is no error.
+ * @property {boolean} $invalid True if at least one error on the control.
*
* @description
*