From 731469846506b039a16f7308eeb024d1df9d2189 Mon Sep 17 00:00:00 2001 From: Techywarrior Date: Sat, 6 Apr 2013 10:16:46 -0700 Subject: [PATCH] removed title from poster view unless specified or no image available --- dashboard-ui/scripts/librarybrowser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard-ui/scripts/librarybrowser.js b/dashboard-ui/scripts/librarybrowser.js index 53dc3c75cc..fa6030abd8 100644 --- a/dashboard-ui/scripts/librarybrowser.js +++ b/dashboard-ui/scripts/librarybrowser.js @@ -15,7 +15,7 @@ var href = item.url || (item.IsFolder ? (item.Id ? "itemList.html?parentId=" + item.Id : "#") : "itemdetails.html?id=" + item.Id); - var showText = options.showTitle || !hasPrimaryImage || (item.Type !== 'Movie' && item.Type !== 'Series' && item.Type !== 'Season' && item.Type !== 'Trailer'); + var showText = options.showTitle || !hasPrimaryImage; var cssClass = showText ? "posterViewItem" : "posterViewItem posterViewItemWithNoText";