From 6d5e772a8f38b6925756555c7f025018b0fcecae Mon Sep 17 00:00:00 2001 From: thp13123 Date: Sun, 22 Sep 2013 11:59:43 +0200 Subject: [PATCH] Update OnDemandList.js Correct for level 0 --- OnDemandList.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OnDemandList.js b/OnDemandList.js index 3182103ad..d86940ae4 100644 --- a/OnDemandList.js +++ b/OnDemandList.js @@ -502,7 +502,7 @@ return declare([List, _StoreMixin], { innerNode.innerHTML = grid.loadingMessage; loadingNode.count = count; // use the query associated with the preload node to get the next "page" - if(preload.query.level){ + if("level" in preload.query){ options.queryLevel = preload.query.level; }