From 723d7e4485d78c152adaeeade88da1dc11be91c4 Mon Sep 17 00:00:00 2001 From: Luke Date: Sun, 7 Jun 2015 15:13:28 -0400 Subject: [PATCH] update collection page --- dashboard-ui/scripts/moviecollections.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dashboard-ui/scripts/moviecollections.js b/dashboard-ui/scripts/moviecollections.js index 93cfc97612..639f815ac4 100644 --- a/dashboard-ui/scripts/moviecollections.js +++ b/dashboard-ui/scripts/moviecollections.js @@ -257,7 +257,7 @@ reloadItems(page); }); - }).on('pagebeforeshowready', "#boxsetsPage", function () { + }).on('pageshowready', "#boxsetsPage", function () { var page = this; @@ -273,6 +273,9 @@ $('.collectionTabs', page).show(); $('.movieTabs', page).hide(); query.ParentId = LibraryMenu.getTopParentId(); + + // Doing this for now due to reports of the page being empty for AutoBoxSet users + query.ParentId = null; } var limit = LibraryBrowser.getDefaultPageSize(); @@ -296,8 +299,6 @@ } }); - }).on('pageshowready', "#boxsetsPage", function () { - updateFilterControls(this); });