diff options
| author | David Bennett | 2013-05-23 00:27:41 -0400 | 
|---|---|---|
| committer | Chirayu Krishnappa | 2013-05-23 11:44:55 -0700 | 
| commit | 041f118b01933fa07098f1333be8e2cf1a28f248 (patch) | |
| tree | fd40101e524741c8ba4b6a1534890d981924789c /src | |
| parent | 0272240400d7896224f34b9f10b492994e29c655 (diff) | |
| download | angular.js-041f118b01933fa07098f1333be8e2cf1a28f248.tar.bz2 | |
docs(input): add missing ngChange directive for email type
All other input types already have it.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ng/directive/input.js | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/src/ng/directive/input.js b/src/ng/directive/input.js index 0cd2a9b0..543ed367 100644 --- a/src/ng/directive/input.js +++ b/src/ng/directive/input.js @@ -243,6 +243,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> | 
