UNPKG

772 BJavaScriptView Raw
1/**
2 * ngTable: Table + Angular JS
3 *
4 * @author Vitalii Savchuk <esvit666@gmail.com>
5 * @url https://github.com/esvit/ng-table/
6 * @license New BSD License <http://creativecommons.org/licenses/BSD/>
7 */
8var templateUrl = require('./filterRow.html');
9ngTableFilterRow.$inject = [];
10/**
11 * directive that renders the filter header row for a table
12 * @ngdoc directive
13 * @example
14 * ```html
15 * <ng-table-filter-row></ng-table-filter-row>
16 * ```
17 */
18export function ngTableFilterRow() {
19 var directive = {
20 restrict: 'E',
21 replace: true,
22 templateUrl: templateUrl,
23 scope: true,
24 controller: 'ngTableFilterRowController',
25 controllerAs: '$ctrl'
26 };
27 return directive;
28}
29//# sourceMappingURL=ngTableFilterRow.directive.js.map
\No newline at end of file