From 0732b731453ca16312cb6a59aa4af2a6bdbab7f7 Mon Sep 17 00:00:00 2001 From: Tom Clegg Date: Wed, 31 Dec 2014 16:21:02 -0500 Subject: [PATCH] 4831: Add eof() controller method. --- apps/backstage/app/component.arv-list.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/backstage/app/component.arv-list.js b/apps/backstage/app/component.arv-list.js index d2dbf13131..1414db04a6 100644 --- a/apps/backstage/app/component.arv-list.js +++ b/apps/backstage/app/component.arv-list.js @@ -21,6 +21,10 @@ function ArvListComponent(connection, arvModelName, contentModule) { function getMoreItems() { return this.vm.getMoreItems.apply(this.vm, arguments); } + Controller.prototype.eof = + function eof() { + return this.vm.eof(); + } Controller.prototype.currentFilter = function currentFilter(key, attr, operator, operand) { if (arguments.length > 1) { -- 2.30.2