Is there something special going on with input type=\"email\" and ng-model attribute?
If the input is email, then the model doesnt update.
If I change the input type to text, nu
It's not a bug, it's only update when we type correct email address format for email validation.
Add this attribute ng-model-options="{'allowInvalid': true}" to allow invalid email input.