From 535adfb26a0d3a9de94176df7510425c85b3418c Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Thu, 22 Oct 2009 22:08:57 -0600 Subject: [PATCH] Fix getAllRows() return --- imp/js/ViewPort.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imp/js/ViewPort.js b/imp/js/ViewPort.js index c7ab8ea78..280391b47 100644 --- a/imp/js/ViewPort.js +++ b/imp/js/ViewPort.js @@ -1250,7 +1250,7 @@ ViewPort_Buffer = Class.create({ getAllRows: function() { - return this.rowsToUIDs(this.rowlist.keys()); + return this.rowlist.keys(); }, rowsToUIDs: function(rows) -- 2.11.0