From e50d4c22db3068d15566f329323ec932d8777e16 Mon Sep 17 00:00:00 2001 From: rolux Date: Mon, 3 Sep 2012 22:27:09 +0200 Subject: [PATCH] In Ox.List, pass map option to Ox.api --- source/Ox.UI/js/List/List.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/Ox.UI/js/List/List.js b/source/Ox.UI/js/List/List.js index e181c5e3..4e208f80 100644 --- a/source/Ox.UI/js/List/List.js +++ b/source/Ox.UI/js/List/List.js @@ -94,6 +94,7 @@ Ox.List = function(options, self) { // FIXME: duplicated self.options.items = Ox.api(self.options.items, { cache: true, + map: self.options.map, sort: self.options.sort, sums: self.options.sums, unique: self.options.unique @@ -129,6 +130,7 @@ Ox.List = function(options, self) { if (Ox.isArray(self.options.items) && !self.options._tree) { self.options.items = Ox.api(self.options.items, { cache: true, + map: self.options.map, sort: self.options.sort, sums: self.options.sums, unique: self.options.unique