From 6346028d3777bce4f8241932d85bc06da692b22f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Blomsk=C3=B8ld?= Date: Sun, 30 Aug 2015 08:29:22 +0200 Subject: [PATCH] docs(form): Added info about pending prop and class --- src/ng/directive/form.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ng/directive/form.js b/src/ng/directive/form.js index 8f856ffe33c7..19600b64a99f 100644 --- a/src/ng/directive/form.js +++ b/src/ng/directive/form.js @@ -25,6 +25,7 @@ function nullFormRenameControl(control, name) { * @property {boolean} $dirty True if user has already interacted with the form. * @property {boolean} $valid True if all of the containing forms and controls are valid. * @property {boolean} $invalid True if at least one containing control or form is invalid. + * @property {boolean} $pending True if at least one containing control or form is pending. * @property {boolean} $submitted True if user has submitted the form even if its invalid. * * @property {Object} $error Is an object hash, containing references to controls or @@ -329,6 +330,7 @@ function FormController(element, attrs, $scope, $animate, $interpolate) { * # CSS classes * - `ng-valid` is set if the form is valid. * - `ng-invalid` is set if the form is invalid. + * - `ng-pending` is set if the form is pending. * - `ng-pristine` is set if the form is pristine. * - `ng-dirty` is set if the form is dirty. * - `ng-submitted` is set if the form was submitted.