* 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)
| 6338 | * @returns {Function} |
| 6339 | */ |
| 6340 | function groupElementsLinkFnWrapper(linkFn, attrStart, attrEnd) { |
| 6341 | return function(scope, element, attrs, controllers, transcludeFn) { |
| 6342 | element = groupScan(element[0], attrStart, attrEnd); |
| 6343 | return linkFn(scope, element, attrs, controllers, transcludeFn); |
| 6344 | }; |
| 6345 | } |
| 6346 | |
| 6347 | /** |
| 6348 | * Once the directives have been collected, their compile functions are executed. This method |
no test coverage detected