diff --git a/dashboard-ui/css/librarybrowser.css b/dashboard-ui/css/librarybrowser.css index 956c213590..854d583301 100644 --- a/dashboard-ui/css/librarybrowser.css +++ b/dashboard-ui/css/librarybrowser.css @@ -397,7 +397,7 @@ span.itemCommunityRating:not(:empty) + .userDataIcons { background-size: cover; background-position: center 15%; background-repeat: no-repeat; - height: 600px; + height: 640px; position: relative; } diff --git a/dashboard-ui/scripts/itemdetailpage.js b/dashboard-ui/scripts/itemdetailpage.js index c50fcc5d92..8ef038928a 100644 --- a/dashboard-ui/scripts/itemdetailpage.js +++ b/dashboard-ui/scripts/itemdetailpage.js @@ -426,7 +426,7 @@ renderTags(page, item); - renderSeriesAirTime(page, item, context); + renderSeriesAirTime(page, item, isStatic); if (item.Players) { $('#players', page).show().html(item.Players + ' Player'); @@ -664,7 +664,7 @@ }); } - function renderSeriesAirTime(page, item, context) { + function renderSeriesAirTime(page, item, isStatic) { if (item.Type != "Series") { $('#seriesAirTime', page).hide(); @@ -685,7 +685,12 @@ } if (item.Studios.length) { - html += ' on ' + item.Studios[0].Name + ''; + + if (isStatic) { + html += ' on ' + item.Studios[0].Name; + } else { + html += ' on ' + item.Studios[0].Name + ''; + } } if (html) { diff --git a/dashboard-ui/scripts/moviesrecommended.js b/dashboard-ui/scripts/moviesrecommended.js index 7e80a58e68..5f4542d59f 100644 --- a/dashboard-ui/scripts/moviesrecommended.js +++ b/dashboard-ui/scripts/moviesrecommended.js @@ -62,7 +62,7 @@ shape: getPortraitShape(), centerText: true, lazy: true, - overlayText: true, + overlayText: false, showDetailsMenu: true }); } diff --git a/dashboard-ui/scripts/shared.js b/dashboard-ui/scripts/shared.js index 214e264256..0c820b309f 100644 --- a/dashboard-ui/scripts/shared.js +++ b/dashboard-ui/scripts/shared.js @@ -87,13 +87,4 @@ }); - function itemDetailPage() { - - var self = this; - - self.play = play; - } - - window.ItemDetailPage = new itemDetailPage(); - })(jQuery, document, LibraryBrowser, window); \ No newline at end of file diff --git a/dashboard-ui/shared.html b/dashboard-ui/shared.html index 8d7e6946da..860f9f5126 100644 --- a/dashboard-ui/shared.html +++ b/dashboard-ui/shared.html @@ -4,7 +4,7 @@