Angularjs reset form field with type of email
angularjs, javascript
Solution
Just for the record, refer to the OP comments for explainations and see this plunker for a demo.
Problem
In AngularJs it seems that when you try to 'reset' a form, by setting all of the models to an empty object, if an input is `type="email"` this doesn't get cleared. Changing it to `type="text"` works however, but then you lose the red border on validation. Is there anyway to reset or clear an email type input? Thanks!