()
| 11159 | return { |
| 11160 | pre: function ngPropPreLinkFn(scope, $element) { |
| 11161 | function applyPropValue() { |
| 11162 | var propValue = ngPropGetter(scope); |
| 11163 | $element[0][propName] = sanitizer(propValue); |
| 11164 | } |
| 11165 | |
| 11166 | applyPropValue(); |
| 11167 | scope.$watch(ngPropWatch, applyPropValue); |
no outgoing calls
no test coverage detected