UNPKG

unserver-unify

Version:

19 lines (18 loc) 477 B
'use strict' var app = angular.module('bamboo'); // accordion-panel controller function PageSizeController() { var self = this; self.$onInit = function() { self.pageSizeOptions = [5,10,15,20]; }; } // Register the accordion-panel component app.component('bbPagesizeSelect', { bindings: { pagesize: '=' }, // Accordion-panel template templateUrl: 'app/directive/form/pagesizeselect.component.html', controller: PageSizeController });