* 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)
| 7309 | * @returns {Function} |
| 7310 | */ |
| 7311 | function groupElementsLinkFnWrapper(linkFn, attrStart, attrEnd) { |
| 7312 | return function(scope, element, attrs, controllers, transcludeFn) { |
| 7313 | element = groupScan(element[0], attrStart, attrEnd); |
| 7314 | return linkFn(scope, element, attrs, controllers, transcludeFn); |
| 7315 | }; |
| 7316 | } |
| 7317 | |
| 7318 | /** |
| 7319 | * Once the directives have been collected, their compile functions are executed. This method |
no test coverage detected