1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

display sort order directly on list page

This commit is contained in:
Luke Pulverenti 2013-10-21 10:32:33 -04:00
parent 739fe94044
commit 7a25c78e46

View file

@ -1096,7 +1096,7 @@
getViewSummaryHtml: function (query, checkedSortOption) {
var html = '';
return html;
if (query.SortBy) {
var id = checkedSortOption[0].id;
@ -1105,7 +1105,7 @@
html += 'Sorted by ' + sortBy.trim().toLowerCase() + ', ' + (query.SortOrder || 'ascending').toLowerCase();
if (!checkedSortOption.hasClass('defaultSort')) {
html += '<button class="btnChangeToDefaultSort" type="button" data-icon="delete" data-inline="true" data-mini="true" data-iconpos="notext">Remove</button>';
//html += '<button class="btnChangeToDefaultSort" type="button" data-icon="delete" data-inline="true" data-mini="true" data-iconpos="notext">Remove</button>';
}
}