()
| 11094 | return { |
| 11095 | pre: function ngPropPreLinkFn(scope, $element) { |
| 11096 | function applyPropValue() { |
| 11097 | var propValue = ngPropGetter(scope); |
| 11098 | $element[0][propName] = sanitizer(propValue); |
| 11099 | } |
| 11100 | |
| 11101 | applyPropValue(); |
| 11102 | scope.$watch(ngPropWatch, applyPropValue); |
no outgoing calls
no test coverage detected