diff --git a/dashboard-ui/movietrailers.html b/dashboard-ui/movietrailers.html
index e079471d07..aa07b23391 100644
--- a/dashboard-ui/movietrailers.html
+++ b/dashboard-ui/movietrailers.html
@@ -20,7 +20,7 @@
diff --git a/dashboard-ui/scripts/gamespage.js b/dashboard-ui/scripts/gamespage.js
index 27572601f1..f8a6405fdb 100644
--- a/dashboard-ui/scripts/gamespage.js
+++ b/dashboard-ui/scripts/gamespage.js
@@ -1,7 +1,7 @@
(function ($, document) {
- var view = "Tile";
+ var view = "Backdrop";
// The base query options
var query = {
diff --git a/dashboard-ui/scripts/movies.js b/dashboard-ui/scripts/movies.js
index ec38e3d425..11556d8241 100644
--- a/dashboard-ui/scripts/movies.js
+++ b/dashboard-ui/scripts/movies.js
@@ -1,6 +1,6 @@
(function ($, document) {
- var view = "Tile";
+ var view = "Backdrop";
// The base query options
var query = {
@@ -28,7 +28,7 @@
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true);
}
- if (view == "Tile") {
+ if (view == "Backdrop") {
html += LibraryBrowser.getPosterDetailViewHtml({
items: result.Items,
useAverageAspectRatio: true,
diff --git a/dashboard-ui/scripts/movietrailers.js b/dashboard-ui/scripts/movietrailers.js
index 309b2b9d98..01c651c7e5 100644
--- a/dashboard-ui/scripts/movietrailers.js
+++ b/dashboard-ui/scripts/movietrailers.js
@@ -1,6 +1,6 @@
(function ($, document) {
- var view = "Tile";
+ var view = "Backdrop";
// The base query options
var query = {
@@ -28,7 +28,7 @@
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true);
}
- if (view == "Tile") {
+ if (view == "Backdrop") {
html += LibraryBrowser.getPosterDetailViewHtml({
items: result.Items,
useAverageAspectRatio: true,
diff --git a/dashboard-ui/scripts/tvshows.js b/dashboard-ui/scripts/tvshows.js
index e1edc42a63..4ee8e4f95a 100644
--- a/dashboard-ui/scripts/tvshows.js
+++ b/dashboard-ui/scripts/tvshows.js
@@ -1,6 +1,6 @@
(function ($, document) {
- var view = "Tile";
+ var view = "Backdrop";
// The base query options
var query = {
@@ -28,7 +28,7 @@
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true);
}
- if (view == "Tile") {
+ if (view == "Backdrop") {
html += LibraryBrowser.getPosterDetailViewHtml({
items: result.Items,
useAverageAspectRatio: true,
diff --git a/dashboard-ui/tvshows.html b/dashboard-ui/tvshows.html
index c1a7298889..d579b5d272 100644
--- a/dashboard-ui/tvshows.html
+++ b/dashboard-ui/tvshows.html
@@ -18,7 +18,7 @@