| 12345678910111213141516171819202122 |
- (function() {
- (function() {
- try {return angular.module('ieat.ui')}
- catch {return angular.module('ieat.ui', [])}}
- )().component('foodList', {
- templateUrl: 'static/templates/foodList.html',
- bindings: {
- tableData: '<',
- structure: '<',
- selectText: '<',
- onSelect: '&'
- },
- controller: ['$scope', '$timeout', function($scope, $timeout) {
- var self = this;
- this.$onInit = function() {
- self.selectText = self.selectText || "Add";
- $scope.pageOffset = 0;
- $scope.pageSize = "10";
- };
- }]
- });
- })();
|