-
Notifications
You must be signed in to change notification settings - Fork 27.4k
feat(input.email): Input of type email support multiple attribute #1866
Conversation
Added support for HTML5 attribute `multiple` to enter more than one e-mail address per input field. The mail addresses can be seperated by comma or semicolon.
Hi Sebastian |
Yes, I did. |
Looks good to me. I have pushed a build to the CI server: http://ci.angularjs.org/job/angular.js-pete/58/ |
…t more than two addresses The regex did not match for more than two mail addresses. The tests have not reflected the element change.
Sorry, but I found that just changing the input fields value did not re-validate with the new regex in the tests. But my tests have not covered the error in regex too. |
Nice fix. Please keep checking it. |
What do you mean? Should I add tests? Or just "lean back while we integrate you stuff" and "keep working on angular.js"? ;-) |
I can't speak for the team but I will get it looked at during the next On 24 January 2013 07:04, Sebastian Janzen notifications@github.com wrote:
|
…te on single address to true The regex did not match for just one mail addresses. The tests have not reflected the element change.
|
@sja there are couple of things to take care of before this PR can be merged, I've included the checklist in the comment above. For now, could you squash commits so it is easier to review and update documentation? |
Ok, I checked everything, but on testacular I get |
Added support for HTML5 attribute
multiple
to enter more than one e-mail address per input field.The mail addresses can be seperated by comma or semicolon.