-
Notifications
You must be signed in to change notification settings - Fork 27.4k
feat(input.email): add support for the multiple attribute #4233
Conversation
Thanks for the PR!
If you need to make changes to your pull request, you can update the commit with Thanks again for your help! |
@@ -614,7 +616,7 @@ function emailInputType(scope, element, attr, ctrl, $sniffer, $browser) { | |||
}; | |||
|
|||
ctrl.$formatters.push(emailValidator); | |||
ctrl.$parsers.push(emailValidator); | |||
ctrl.$parsers.push(emailValidator ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove this hunk please. Do the same with the whitespace changes in the file below.
I signed the CLA a long time ago. |
Did not know about ngList directive. Maby the multiple attribute should trigger same behavior as ngList instead ? |
Rebased agains current master. |
If present will allow for multiple email addresses, separated with comma (,)
02dc2aa
to
fd2d6c0
Compare
cad9560
to
f294244
Compare
e8dc429
to
e83fab9
Compare
4dd5a20
to
998c61c
Compare
Unfortunately, we never got around to review your PR. The good news is, we are moving towards a solution that can handle collections on the ngModel level. This time it's for real! ;) |
If present will allow for multiple email addresses, separated with comma (,)