diff --git a/source/Ox.UI/js/List/Ox.InfoList.js b/source/Ox.UI/js/List/Ox.InfoList.js index 8254a424..0890e7cb 100644 --- a/source/Ox.UI/js/List/Ox.InfoList.js +++ b/source/Ox.UI/js/List/Ox.InfoList.js @@ -127,7 +127,6 @@ Ox.InfoList = function(options, self) { return $item; } - function getItemWidth(cached) { if (!cached) { self.cachedWidth = that.$element.width() - Ox.UI.SCROLLBAR_SIZE; @@ -181,8 +180,8 @@ Ox.InfoList = function(options, self) { return that; }; - that.reloadList = function() { - that.$element.reloadList(); + that.reloadList = function(stayAtPosition) { + that.$element.reloadList(stayAtPosition); return that; };