You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.
If you use, for example <input ng-list type="email" ng-model='email'>
You wouldn't get more than one element into your email array, since email with trailing separating comma will fail the EMAIL_REGEXP match (/^[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,6}$/)
Or would you advice to use some custom validation / multiple inputs for array of emails?
The text was updated successfully, but these errors were encountered:
If you use, for example
<input ng-list type="email" ng-model='email'>
You wouldn't get more than one element into your email array, since email with trailing separating comma will fail the EMAIL_REGEXP match (
/^[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,6}$/
)Or would you advice to use some custom validation / multiple inputs for array of emails?
The text was updated successfully, but these errors were encountered: