(function ($, document) { $(document).on('pagebeforeshow', "#tvNextUpPage", function () { var screenWidth = $(window).width(); var parentId = LibraryMenu.getTopParentId(); var page = this; var options = { SortBy: "DateCreated", SortOrder: "Descending", IncludeItemTypes: "Episode", Limit: screenWidth >= 1920 ? 24 : (screenWidth >= 1440 ? 16 : 15), Recursive: true, Fields: "PrimaryImageAspectRatio,SeriesInfo,UserData", Filters: "IsUnplayed", ExcludeLocationTypes: "Virtual", ParentId: parentId }; ApiClient.getItems(Dashboard.getCurrentUserId(), options).done(function (result) { $('#latestEpisodes', page).html(LibraryBrowser.getPosterViewHtml({ items: result.Items, shape: "backdrop", showTitle: true, showParentTitle: true, overlayText: screenWidth >= 600 })).createPosterItemMenus(); }); }); })(jQuery, document);