diff --git a/dashboard-ui/movietrailers.html b/dashboard-ui/movietrailers.html
index e079471d0..aa07b2339 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 27572601f..f8a6405fd 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 ec38e3d42..11556d824 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 309b2b9d9..01c651c7e 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 e1edc42a6..4ee8e4f95 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 c1a729888..d579b5d27 100644
--- a/dashboard-ui/tvshows.html
+++ b/dashboard-ui/tvshows.html
@@ -18,7 +18,7 @@