diff --git a/dashboard-ui/css/librarymenu.css b/dashboard-ui/css/librarymenu.css index 4be8e83178..82bb894556 100644 --- a/dashboard-ui/css/librarymenu.css +++ b/dashboard-ui/css/librarymenu.css @@ -3,7 +3,7 @@ } .libraryPage:not(.metadataEditorPage):not(.noSecondaryNavPage) { - padding-top: 98px !important; + padding-top: 99px !important; } .libraryMenuDivider { @@ -121,7 +121,7 @@ } .libraryViewNav { - height: 48px; + height: 49px; overflow: hidden; position: fixed; right: 0; @@ -129,7 +129,7 @@ top: 50px; z-index: 999; text-align: center; - font-size: 14px; + font-size: 15px; white-space: nowrap; padding: 0 0 0; overflow-x: scroll; diff --git a/dashboard-ui/livetvsettings.html b/dashboard-ui/livetvsettings.html index 40a79c0138..a31669e0fd 100644 --- a/dashboard-ui/livetvsettings.html +++ b/dashboard-ui/livetvsettings.html @@ -29,7 +29,14 @@ - + + + + + + + +
${LabelNumberOfGuideDaysHelp}
diff --git a/dashboard-ui/mypreferenceswebclient.html b/dashboard-ui/mypreferenceswebclient.html index 9fc33a5f77..4e9c4ab24e 100644 --- a/dashboard-ui/mypreferenceswebclient.html +++ b/dashboard-ui/mypreferenceswebclient.html @@ -33,7 +33,6 @@ - @@ -48,7 +47,6 @@ - @@ -64,7 +62,6 @@ - @@ -80,7 +77,6 @@ - diff --git a/dashboard-ui/scripts/indexpage.js b/dashboard-ui/scripts/indexpage.js index a8a1099a52..89e02b6e24 100644 --- a/dashboard-ui/scripts/indexpage.js +++ b/dashboard-ui/scripts/indexpage.js @@ -240,43 +240,6 @@ }); } - function loadLibraryFolders(elem, userId, shape, index) { - - ApiClient.getItems(userId, { - - SortBy: "SortName", - ImageTypeLimit: 1 - - }).done(function (result) { - - var html = ''; - var items = result.Items; - - for (var i = 0, length = items.length; i < length; i++) { - items[i].url = 'itemlist.html?parentid=' + items[i].Id; - } - - if (items.length) { - - html += '

' + Globalize.translate('HeaderLibraryFolders') + '

'; - - html += '
'; - html += LibraryBrowser.getPosterViewHtml({ - items: items, - shape: shape, - showTitle: true, - centerText: true, - lazy: true - }); - html += '
'; - } - - $(elem).html(html).lazyChildren(); - - handleLibraryLinkNavigations(elem); - }); - } - function loadResume(elem, userId) { var screenWidth = $(window).width(); @@ -453,7 +416,6 @@ loadRecentlyAdded: loadRecentlyAdded, loadLatestChannelMedia: loadLatestChannelMedia, loadLibraryTiles: loadLibraryTiles, - loadLibraryFolders: loadLibraryFolders, loadResume: loadResume, loadLatestChannelItems: loadLatestChannelItems, loadLatestLiveTvRecordings: loadLatestLiveTvRecordings, @@ -488,6 +450,10 @@ var section = displayPreferences.CustomPrefs['home' + index] || getDefaultSection(index); + if (section == 'folders') { + section = 'librarytiles-automobile'; + } + var showLibraryTileNames = displayPreferences.CustomPrefs.enableLibraryTileNames != '0'; var elem = $('.section' + index, page); @@ -517,11 +483,7 @@ else if (section == 'latesttvrecordings') { Sections.loadLatestLiveTvRecordings(elem, userId); } - - else if (section == 'folders') { - Sections.loadLibraryFolders(elem, userId, 'backdrop', index); - - } else if (section == 'latestchannelmedia') { + else if (section == 'latestchannelmedia') { Sections.loadLatestChannelMedia(elem, userId); } else {