* Wrapper for linking function which converts normal linking function into a grouped * linking function. * @param linkFn * @param attrStart * @param attrEnd * @returns {Function}
(linkFn, attrStart, attrEnd)
| 7718 | * @returns {Function} |
| 7719 | */ |
| 7720 | function groupElementsLinkFnWrapper(linkFn, attrStart, attrEnd) { |
| 7721 | return function(scope, element, attrs, controllers, transcludeFn) { |
| 7722 | element = groupScan(element[0], attrStart, attrEnd); |
| 7723 | return linkFn(scope, element, attrs, controllers, transcludeFn); |
| 7724 | }; |
| 7725 | } |
| 7726 | |
| 7727 | /** |
| 7728 | * Once the directives have been collected, their compile functions are executed. This method |
no test coverage detected