MCPcopy Index your code
hub / github.com/angular-ui/ui-grid / groupElementsLinkFnWrapper

Function groupElementsLinkFnWrapper

lib/test/angular/1.7.0/angular.js:9574–9579  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

9572 * @returns {Function}
9573 */
9574 function groupElementsLinkFnWrapper(linkFn, attrStart, attrEnd) {
9575 return function groupedElementsLink(scope, element, attrs, controllers, transcludeFn) {
9576 element = groupScan(element[0], attrStart, attrEnd);
9577 return linkFn(scope, element, attrs, controllers, transcludeFn);
9578 };
9579 }
9580
9581 /**
9582 * A function generator that is used to support both eager and lazy compilation

Callers 1

addLinkFnsFunction · 0.70

Calls 1

groupScanFunction · 0.70

Tested by

no test coverage detected