From 63be222326f3badbb76371f82d49fed5ab9e3e65 Mon Sep 17 00:00:00 2001 From: Vojta Jina Date: Tue, 13 Mar 2012 13:52:57 -0700 Subject: docs(input): Fix some broken links, add missing $, use ng- in examples --- src/directive/input.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src') 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.} 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.} $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.} formatters Whenever the model value changes, it executes all of + * @property {Array.} $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 * -- cgit v1.2.3