This repository was archived by the owner on Apr 12, 2024. It is now read-only.
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
ng-model invalid when multiple="multiple" #8986
Closed
Description
I have an input field here which allows multiple email addresses
input(name="to", type="email", data-ng-model="videomail.to", data-ng-change="validate()", data-ng-focus="showDock2To = true", data-ng-blur="showDock2To = false", placeholder="To (recipient email addresses)", required="required", autocomplete="on", multiple="multiple")
but when i enter two email addresses, separated with commas, the angular model holds one email address only. it should leave them untouched.