(value)
| 17122 | textInputType(scope, element, attr, ctrl, $sniffer, $browser); |
| 17123 | |
| 17124 | var urlValidator = function(value) { |
| 17125 | return validate(ctrl, 'url', ctrl.$isEmpty(value) || URL_REGEXP.test(value), value); |
| 17126 | }; |
| 17127 | |
| 17128 | ctrl.$formatters.push(urlValidator); |
| 17129 | ctrl.$parsers.push(urlValidator); |
nothing calls this directly
no test coverage detected