aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Bennett2013-05-23 00:27:41 -0400
committerBrian Ford2013-08-13 10:17:44 -0700
commit7636670a77c59ee798f3a2adb2a4098483d022ae (patch)
tree835c12325497db99a725b1b289721613cb73b194
parentfe6247a7f831f6f3ad873b31f2ac282b2762243d (diff)
downloadangular.js-7636670a77c59ee798f3a2adb2a4098483d022ae.tar.bz2
docs(input): add missing ngChange directive for email type
All other input types already have it.
-rw-r--r--src/ng/directive/input.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ng/directive/input.js b/src/ng/directive/input.js
index 2d4f32e3..6fd17131 100644
--- a/src/ng/directive/input.js
+++ b/src/ng/directive/input.js
@@ -235,6 +235,8 @@ var inputType = {
* @param {string=} ngPattern Sets `pattern` validation error key if the value does not match the
* RegExp pattern expression. Expected value is `/regexp/` for inline patterns or `regexp` for
* patterns defined as scope expressions.
+ * @param {string=} ngChange Angular expression to be executed when input changes due to user
+ * interaction with the input element.
*
* @example
<doc:example>