(value)
| 17133 | textInputType(scope, element, attr, ctrl, $sniffer, $browser); |
| 17134 | |
| 17135 | var emailValidator = function(value) { |
| 17136 | return validate(ctrl, 'email', ctrl.$isEmpty(value) || EMAIL_REGEXP.test(value), value); |
| 17137 | }; |
| 17138 | |
| 17139 | ctrl.$formatters.push(emailValidator); |
| 17140 | ctrl.$parsers.push(emailValidator); |
nothing calls this directly
no test coverage detected