diff --git a/dashboard-ui/scripts/Itemdetailpage.js b/dashboard-ui/scripts/Itemdetailpage.js
index ea51f2e01..c05b95dff 100644
--- a/dashboard-ui/scripts/Itemdetailpage.js
+++ b/dashboard-ui/scripts/Itemdetailpage.js
@@ -264,7 +264,7 @@
var html = LibraryBrowser.getPosterViewHtml({
items: result.Items,
- useAverageAspectRatio: true,
+ useAverageAspectRatio: item.MediaType != "Game",
showNewIndicator: true,
shape: item.Type == "MusicAlbum" ? "square" : "portrait"
});
@@ -320,7 +320,6 @@
}
function renderChildren(page, item) {
-
var sortBy = item.Type == "Boxset" ? "ProductionYear,SortName" : "SortName";
ApiClient.getItems(Dashboard.getCurrentUserId(), {
diff --git a/dashboard-ui/scripts/moviepeople.js b/dashboard-ui/scripts/moviepeople.js
index fe74dccc3..f2914cf97 100644
--- a/dashboard-ui/scripts/moviepeople.js
+++ b/dashboard-ui/scripts/moviepeople.js
@@ -108,6 +108,19 @@
reloadItems(page);
});
+ $('.alphabetPicker', this).on('alphaselect', function (e, character) {
+
+ query.NameStartsWith = character;
+
+ reloadItems(page);
+
+ }).on('alphaclear', function (e) {
+
+ query.NameStartsWith = '';
+
+ reloadItems(page);
+ });
+
}).on('pagebeforeshow', "#moviePeoplePage", function () {
var limit = LibraryBrowser.getDefaultPageSize();
@@ -143,6 +156,8 @@
this.checked = filters.indexOf(',' + filterName) != -1;
}).checkboxradio('refresh');
+
+ $('.alphabetPicker', this).alphaValue(query.NameStartsWith);
});
})(jQuery, document);
\ No newline at end of file
diff --git a/dashboard-ui/scripts/musicartists.js b/dashboard-ui/scripts/musicartists.js
index b2e749c99..25bf2bf2c 100644
--- a/dashboard-ui/scripts/musicartists.js
+++ b/dashboard-ui/scripts/musicartists.js
@@ -98,6 +98,19 @@
reloadItems(page);
});
+ $('.alphabetPicker', this).on('alphaselect', function (e, character) {
+
+ query.NameStartsWith = character;
+
+ reloadItems(page);
+
+ }).on('alphaclear', function (e) {
+
+ query.NameStartsWith = '';
+
+ reloadItems(page);
+ });
+
}).on('pagebeforeshow', "#musicArtistsPage", function () {
var limit = LibraryBrowser.getDefaultPageSize();
@@ -126,6 +139,8 @@
}).checkboxradio('refresh');
$('#chkIsOnTour', this).checked(query.IsOnTour === true).checkboxradio('refresh');
+
+ $('.alphabetPicker', this).alphaValue(query.NameStartsWith);
});
})(jQuery, document);
\ No newline at end of file
diff --git a/dashboard-ui/scripts/tvpeople.js b/dashboard-ui/scripts/tvpeople.js
index 26f0e8405..2e6bbcd53 100644
--- a/dashboard-ui/scripts/tvpeople.js
+++ b/dashboard-ui/scripts/tvpeople.js
@@ -108,6 +108,19 @@
reloadItems(page);
});
+ $('.alphabetPicker', this).on('alphaselect', function (e, character) {
+
+ query.NameStartsWith = character;
+
+ reloadItems(page);
+
+ }).on('alphaclear', function (e) {
+
+ query.NameStartsWith = '';
+
+ reloadItems(page);
+ });
+
}).on('pagebeforeshow', "#tvPeoplePage", function () {
var limit = LibraryBrowser.getDefaultPageSize();
@@ -152,6 +165,8 @@
this.checked = filters.indexOf(',' + filterName) != -1;
}).checkboxradio('refresh');
+
+ $('.alphabetPicker', this).alphaValue(query.NameStartsWith);
});
})(jQuery, document);
\ No newline at end of file
diff --git a/dashboard-ui/tvpeople.html b/dashboard-ui/tvpeople.html
index 4061044dd..b5dbb20a4 100644
--- a/dashboard-ui/tvpeople.html
+++ b/dashboard-ui/tvpeople.html
@@ -13,6 +13,9 @@
Actors
Networks